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