Instantiator
Generate c++ template instantiations
Loading...
Searching...
No Matches
GetNeededInstantiations.hpp
Go to the documentation of this file.
1#ifndef GET_NEEDED_INSTANTIATIONS_H_
2#define GET_NEEDED_INSTANTIATIONS_H_
3
4#include <vector>
5
6#include "clang/ASTMatchers/ASTMatchFinder.h"
7
8#include "Injection.hpp"
9
19class GetNeededInstantiations : public clang::ast_matchers::MatchFinder::MatchCallback
20{
21public:
26 std::vector<Injection>* toDoList;
27 virtual void run(const clang::ast_matchers::MatchFinder::MatchResult& Result) override;
28};
29
30#endif
MatchCallback for template instantiation detections.
std::vector< Injection > * toDoList
virtual void run(const clang::ast_matchers::MatchFinder::MatchResult &Result) override