-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMiniSQL.h
More file actions
19 lines (17 loc) · 731 Bytes
/
MiniSQL.h
File metadata and controls
19 lines (17 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//////////////////////////////////////////////////////////
///----------------------------------------------------///
/// Module: MiniSQL ///
/// Produced by: Yuheng Zhou ///
/// Description: The main entrance of MiniSQL ///
/// system, polling the Interpreter ///
/// and offering API the protocol. ///
/// date: 2014/11/18 ///
///----------------------------------------------------///
//////////////////////////////////////////////////////////
#if !defined(_MINISQL_H_)
#define _MINISQL_H_
#include "Interpreter.h"
#include "API_Module.h"
#include<iostream>
#include<cstdlib>
#endif