mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
14 lines
256 B
C++
14 lines
256 B
C++
#ifndef INDEX_H_
|
|
#define INDEX_H_
|
|
#include <clang-c/Index.h>
|
|
|
|
namespace clang {
|
|
class Index {
|
|
public:
|
|
Index(int excludeDeclarationsFromPCH, int displayDiagnostics);
|
|
~Index();
|
|
CXIndex cx_index;
|
|
};
|
|
} // namespace clang
|
|
#endif // INDEX_H_
|