anthem/include/anthem/Completion.h

22 lines
530 B
C++

#ifndef __ANTHEM__COMPLETION_H
#define __ANTHEM__COMPLETION_H
#include <anthem/AST.h>
namespace anthem
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Completion
//
////////////////////////////////////////////////////////////////////////////////////////////////////
std::vector<ast::Formula> complete(std::vector<ast::ScopedFormula> &&scopedFormulas);
////////////////////////////////////////////////////////////////////////////////////////////////////
}
#endif