anthem/include/anthem/Completion.h

22 lines
508 B
C++

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