Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

mainTagsLife.cpp

Go to the documentation of this file.
00001 //345678901234567890123456789012345678901234567890123456789012345678901234567890
00002 //#include "Link/ImpalaLib.cpp"
00003 /*
00004  * TagsLife needs these libraries:
00005  * - OGL
00006  * - jpeg
00007  * - png
00008  * - xerces-c
00009  * - log4cpp
00010  * - OpenGL (so: GL, GLU, glut, X11 on UvA Linux)
00011  *
00012  * Optional:
00013  * - curl
00014  * - boost_thread
00015  *
00016  */
00017 
00018 #ifdef RICHARD
00019 // RvB: uint is not standard defined or typedefed on MsWindows
00020 typedef unsigned int uint;
00021 #endif
00022 
00023 #include "Basis/CmdOptions.h"
00024 #include "Basis/ILog.h"
00025 
00026 #include "OglGui/OglLib.cpp"
00027 
00028 #include "Application/TagsLife/TagsLife.h"
00029 
00030 using namespace Impala;
00031 
00032 int main(int argc, char* argv[])
00033 {
00034 
00035         OglInit(&argc, &argv[0]);
00036     CmdOptions& options = CmdOptions::GetInstance();
00037     options.Initialise(true, false, true);
00038     if (! options.ParseArgs(argc, argv, "", 0)) {
00039         return 1;
00040     }
00041 
00042     Impala::Application::TagsLife::TagsLife* TagsLife =
00043         new Impala::Application::TagsLife::TagsLife(0,0,1024,768);
00044 
00045     TagsLife->Start();
00046     OglEventLoop();
00047     return 1;
00048 }

Generated on Fri Mar 19 09:30:39 2010 for ImpalaSrc by  doxygen 1.5.1