Files Classes Functions Hierarchy
#include <cassert>#include <iostream>#include <commandline.h>
Go to the source code of this file.
Functions | |
| int | main (int argc, char **argv) |
| int main | ( | int | argc, | |
| char ** | argv | |||
| ) |
Definition at line 7 of file main.cpp.
00008 { 00009 commandline cmd(argc,argv); 00010 uint prog(0); 00011 00012 00013 switch (prog) 00014 { 00015 case 0: 00016 cout << "Hello world" << endl; 00017 cout << "./main prog=1 OpenGL " << endl; 00018 cout << "./main prog=2 Glut" << endl; 00019 break; 00020 } 00021 00022 00023 return 0; 00024 }
1.5.8