Files
clice/include/AST/Directive.h
2024-09-03 20:10:38 +08:00

16 lines
268 B
C++

#include "Diagnostic.h"
namespace clice {
// TODO:
struct Directive {
llvm::StringSet<> includes;
std::vector<clang::SourceRange> comments;
clang::CommentHandler* handler();
std::unique_ptr<clang::PPCallbacks> callback();
};
} // namespace clice