Added scaffold for implementing completion.

This commit is contained in:
2017-04-05 18:21:38 +02:00
parent 838a68e230
commit 27b46ceee1
3 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#ifndef __ANTHEM__COMPLETION_H
#define __ANTHEM__COMPLETION_H
#include <anthem/AST.h>
namespace anthem
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Completion
//
////////////////////////////////////////////////////////////////////////////////////////////////////
void complete(std::vector<ast::Formula> &formulas);
////////////////////////////////////////////////////////////////////////////////////////////////////
}
#endif