HyriseSQLParser/src/bison/SQLParser.h

16 lines
179 B
C
Raw Normal View History

2014-10-09 01:30:22 +02:00
#ifndef __SQLPARSER_H_
#define __SQLPARSER_H_
#include "Statement.h"
class SQLParser {
public:
static Statement* parseSQL(const char* sql);
private:
SQLParser();
};
#endif