]> git.llucax.com Git - software/bife/bife++.git/blob - parser_test.cpp
Now widgets are passed as pointer (and stored as pointers) in container classes.
[software/bife/bife++.git] / parser_test.cpp
1 // vim: set expandtab tabstop=4 shiftwidth=4:
2
3 //#include "chit.h"
4 #include "parser.h"
5 #include <sstream>
6 #include <iostream>
7 #include <string>
8
9 using namespace std;
10 using namespace bife;
11
12 int main(int argc, char* argv[]) {
13     string file;
14     if (argc < 2) {
15         file = "test.xml";
16     } else {
17         file = argv[1];
18     }
19     //CHIT tpl;
20     cout << "Parser example:" << endl;
21     cout << "===============" << endl;
22     try {
23         Parser parser;
24         parser.parse_file(file);
25     } catch (exception e) {
26         cerr << "Error: " << e.what() << endl;
27         return 1;
28     }
29     return 0;
30 }