* 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
25 lines
526 B
C++
25 lines
526 B
C++
#ifndef CXX_NAME_RESOLVER_H
|
|
#define CXX_NAME_RESOLVER_H
|
|
|
|
#include <vector>
|
|
|
|
#include "clang/AST/Decl.h"
|
|
|
|
class CxxNameResolver
|
|
{
|
|
public:
|
|
CxxNameResolver(std::vector<const clang::Decl*> ignoredContextDecls);
|
|
virtual ~CxxNameResolver();
|
|
|
|
void ignoreContextDecl(const clang::Decl* decl);
|
|
bool ignoresContext(const clang::DeclContext* declContext);
|
|
|
|
protected:
|
|
std::vector<const clang::Decl*> getIgnoredContextDecls() const;
|
|
|
|
private:
|
|
std::vector<const clang::Decl*> m_ignoredContextDecls;
|
|
};
|
|
|
|
#endif // CXX_NAME_RESOLVER_H
|