18 lines
417 B
C++
18 lines
417 B
C++
//
|
|
// Created by erki on 02.03.21.
|
|
//
|
|
|
|
#include "OperationFinderAstAction.hpp"
|
|
|
|
#include "OperationFinderAstConsumer.hpp"
|
|
|
|
OperationFinderAstAction::OperationFinderAstAction(OperationFinder* op_finder)
|
|
: _op_finder(op_finder)
|
|
{ }
|
|
|
|
std::unique_ptr<clang::ASTConsumer> OperationFinderAstAction::newASTConsumer()
|
|
{
|
|
return std::unique_ptr<clang::ASTConsumer>(
|
|
new OperationFinderAstConsumer(_op_finder));
|
|
}
|