⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filefind.cpp

📁 用VC编写的可以将VC.NET的文档转换成VC6.0的文档的程序
💻 CPP
字号:
// FileFind.cpp: implementation of the CFileFind class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "FileFind.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CFileFind::CFileFind(const std::vector<std::string>&filter)
{
	m_filter=filter;
	if(m_filter.size)
		m_end=false;
	else
		m_end=true;
	
}

CFileFind::~CFileFind()
{

}

CFileFind& CFileFind::end()
{
	CFileFind end(const std::vector<std::string>());
	return end;

}
bool CFileFind::operator!=(CFileFind&right)
{
	return !m_end;
}
std::string CFileFind::operator * ()
{
	return std::string ();
}

void CFileFind::NextFit()
{

}

CFileFind CFileFind::begin()
{
return *this;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -