* removed trial target * updated deploy scripts to exclude trial * cleanup CMakeLists * removed Eigen dependencies * split parser lib into lib_cxx and lib_java * added ProjectFactory and ProjectFactoryModules * removed old installer projects * updated wix installer * updated readme for wix setup * updated to use obfuscated exe * added qt.conf * added indexing dialog images * added jars * added coatidb files of sample projects * added source code of javaparser sample * removed auto-refresh image * intermediate files of windows installer are created in build folder * preselected desktop shortcut * build bat is executed from deploy_windows script
24 lines
484 B
C++
24 lines
484 B
C++
#ifndef COMMENT_HANDLER_H
|
|
#define COMMENT_HANDLER_H
|
|
|
|
#include "clang/Lex/Preprocessor.h"
|
|
|
|
class FileRegister;
|
|
class ParserClient;
|
|
|
|
class CommentHandler
|
|
: public clang::CommentHandler
|
|
{
|
|
public:
|
|
CommentHandler(ParserClient* client, FileRegister* fileRegister);
|
|
virtual ~CommentHandler();
|
|
|
|
virtual bool HandleComment(clang::Preprocessor& preprocessor, clang::SourceRange sourceRange);
|
|
|
|
private:
|
|
ParserClient* m_client;
|
|
FileRegister* m_fileRegister;
|
|
};
|
|
|
|
#endif // COMMENT_HANDLER_H
|