mirror of https://gitlab.com/cppit/libclangmm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
240 B
13 lines
240 B
|
11 years ago
|
#ifndef INDEX_H_
|
||
|
|
#define INDEX_H_
|
||
|
|
#include <clang-c/Index.h>
|
||
|
|
|
||
|
|
namespace clang {
|
||
|
|
class Index {
|
||
|
|
public:
|
||
|
|
Index(int excludeDeclarationsFromPCH, int displayDiagnostics);
|
||
|
|
CXIndex index_;
|
||
|
|
};
|
||
|
|
} // namespace clang
|
||
|
|
#endif // INDEX_H_
|