anthem/include/anthem/Completion.h

22 lines
530 B
C
Raw Normal View History

#ifndef __ANTHEM__COMPLETION_H
#define __ANTHEM__COMPLETION_H
#include <anthem/AST.h>
namespace anthem
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Completion
//
////////////////////////////////////////////////////////////////////////////////////////////////////
2017-06-01 02:37:45 +02:00
std::vector<ast::Formula> complete(std::vector<ast::ScopedFormula> &&scopedFormulas);
////////////////////////////////////////////////////////////////////////////////////////////////////
}
#endif