HyriseSQLParser/src/bison/SQLParser.h

17 lines
205 B
C
Raw Normal View History

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