00001
00002
00003
00004
00005
00006
00007
00008
00010
00011 #include <config.h>
00012 #endif
00013
00014 #include <iostream.h>
00015 #include <fstream.h>
00016 #include <stdlib.h>
00017
00018 #include <vector>
00019 #include <string>
00020
00021 #include "demlparser.h"
00022
00023 using namespace std;
00024 using namespace deml;
00025
00026 int main(int argc, char *argv[])
00027 {
00028 fstream fin;
00029 DEMLparser* parser;
00030 tree<string>* detree;
00031
00032 fin.open("./index.deml", ios::in | ios::nocreate);
00033 parser = new DEMLparser(&fin);
00034 detree = parser->parse();
00035
00036 cout << "End of line." << endl;
00037 return EXIT_SUCCESS;
00038 }