ccls/libclangmm/Index.h
Jacob Dufault 5dbde940b6 wip
2017-02-16 01:35:30 -08:00

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_