#ifndef CODECOMPLETERESULTS_H_ #define CODECOMPLETERESULTS_H_ #include #include #include "CompletionString.h" namespace clang { class CodeCompleteResults { public: CodeCompleteResults(CXTranslationUnit &cx_tu, const std::string &file_name, const std::map &buffers, int line_num, int column); ~CodeCompleteResults(); CompletionString get(int index); int size(); CXCodeCompleteResults *cx_results; }; } // namespace clang #endif // CODECOMPLETERESULTS_H_