HyriseSQLParser/src/lib/Statement.cpp
2014-10-22 17:42:05 +02:00

15 lines
254 B
C++

/*
* Statement.cpp
* 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) {
};