ccls/libclangmm/Index.h

14 lines
256 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 {
class Index {
public:
Index(int excludeDeclarationsFromPCH, int displayDiagnostics);
~Index();
CXIndex cx_index;
};
} // namespace clang
#endif // INDEX_H_