HyriseSQLParser/src/bison/SQLParser.h

17 lines
211 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:
2014-10-23 11:41:44 +02:00
static Statement* parseSQLString(const char* sql);
2014-10-09 01:30:22 +02:00
private:
SQLParser();
};
#endif