#ifndef INDEX_H_ #define INDEX_H_ #include namespace clang { class Index { public: Index(int excludeDeclarationsFromPCH, int displayDiagnostics); ~Index(); CXIndex cx_index; }; } // namespace clang #endif // INDEX_H_