HyriseSQLParser/src/parser/SQLParser.h

21 lines
252 B
C
Raw Normal View History

2014-10-09 01:30:22 +02:00
#ifndef __SQLPARSER_H_
#define __SQLPARSER_H_
2014-11-07 01:09:06 +01:00
#include "sqllib.h"
#include "bison_parser.h"
2014-10-09 01:30:22 +02:00
namespace hsql {
2014-10-09 01:30:22 +02:00
class SQLParser {
public:
static StatementList* parseSQLString(const char* sql);
2014-10-09 01:30:22 +02:00
private:
SQLParser();
};
} // namespace hsql
2014-10-09 01:30:22 +02:00
#endif