Mercurial > hg > grouptrack
comparison src/main.cpp @ 0:2aa8ba4db20e
Initial check in.
author | samer |
---|---|
date | Sat, 21 Jan 2012 12:15:29 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:2aa8ba4db20e |
---|---|
1 #include "ofMain.h" | |
2 #include "testApp.h" | |
3 | |
4 #define HOST "localhost" | |
5 #define PORT 7770 | |
6 | |
7 //======================================================================== | |
8 int main(int argc, const char **argv){ | |
9 ofRunApp(new testApp( | |
10 argc>1 ? argv[1] : HOST, | |
11 argc>2 ? atoi(argv[2]) : PORT, | |
12 argc>3 ? atoi(argv[3]) : 15)); | |
13 } |