Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

vuTextGui.cpp

Go to the documentation of this file.
00001 
00020 #include "vuGuiParser.h"
00021 #include <iostream.h>
00022 
00023 int main(int argc, char* argv[])
00024 {
00025     vuGuiParser p;
00026 
00027     try
00028     {
00029         if (argc < 2) throw("Need filename as argument");  
00030 
00031         p.Parse(argv[1]);
00032         return 0;
00033     }
00034     catch(const char* str)
00035     {
00036         cout << "Error: " << str << endl;
00037         return -1;
00038     }
00039     return 0;
00040 }

Generated on Wed Dec 15 21:20:38 2004 for vuVolume by  doxygen 1.3.9.1