HyriseSQLParser/src/lib/Statement.cpp
2014-10-20 23:19:27 +02:00

14 lines
306 B
C++

/*
* Statement.c
* Implementation of functions used to build the syntax tree.
*/
#include "Statement.h"
#include <stdlib.h>
Statement::Statement(EStatementType type) : type(type) {};
SelectStatement::SelectStatement() : Statement(eSelect) {};
TableRef::TableRef(ETableRefType type) : type(type) {};