codevisitor.h

来自「压缩包里有教材<<C++模式设计-基于QT4开源跨平台开发框架&gt」· C头文件 代码 · 共 27 行

H
27
字号
#ifndef _CODE_VISITOR_H_#define _CODE_VISITOR_H_#include <filevisitor.h>#include <QStringList>/**   This program will visit every selected file   in or below the specified directory and produce a list   of the names of the files that it #includes.*///startclass CodeVisitor : public FileVisitor {  public:    CodeVisitor(QString filter = "*.h,*.cpp", bool recursive = true);    CodeVisitor(QStringList filterList, bool recursive = true);    void processFile(QString filename);    int getNumFiles() const;    QString getResultString() const; private:    int m_NumFiles;    QStringList m_Result;};//end#endif

⌨️ 快捷键说明

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