Sketched rough parser code construction including some SQL AST classes.

This commit is contained in:
eelke 2018-06-19 19:52:56 +02:00
parent f3898599fd
commit 5b20f900fc
15 changed files with 459 additions and 4 deletions

8
core/SqlAstNode.cpp Normal file
View file

@ -0,0 +1,8 @@
#include "SqlAstNode.h"
using namespace SqlAst;
Node::Node()
{
}