ccls/src/libclangmm/Index.h

14 lines
245 B
C
Raw Normal View History

2017-02-16 09:35:30 +00:00
#ifndef INDEX_H_
#define INDEX_H_
#include <clang-c/Index.h>
namespace clang {
2017-04-22 07:42:57 +00:00
class Index {
public:
Index(int excludeDeclarationsFromPCH, int displayDiagnostics);
~Index();
CXIndex cx_index;
};
2017-02-16 09:35:30 +00:00
} // namespace clang
#endif // INDEX_H_