Skip to content
Snippets Groups Projects

horizontal tiling

Merged Maxence Naud requested to merge tiling into main
Files
36
@@ -12,15 +12,17 @@ namespace Aidge{
/**
* @brief this class uses the lexer to create an AST according to a set of gramer rules
*/
class GraphParser{
class GraphParser {
public:
public:
/**
* @brief AST graph creation function
* @param gRegexExpressions String representing the logical fuction to be performed
*/
GraphParser(const std::string gRegexExpressions);
~GraphParser() noexcept;
/**
* @brief AST graph creation function
* @return The AST tree
@@ -35,7 +37,7 @@ class GraphParser{
const std::string getQuery();
private:
private:
/**
* @brief restart at the start of the ConditionalExpressions for LEXER and restart mCurrentToken
*/
Loading