annotate src/main.cpp @ 16:79de93763a94 tip

Removed termapp, which now has it's own project (mtri-termtrack)
author samer
date Mon, 27 Feb 2012 20:38:12 +0000
parents 2aa8ba4db20e
children
rev   line source
samer@0 1 #include "ofMain.h"
samer@0 2 #include "testApp.h"
samer@0 3
samer@0 4 #define HOST "localhost"
samer@0 5 #define PORT 7770
samer@0 6
samer@0 7 //========================================================================
samer@0 8 int main(int argc, const char **argv){
samer@0 9 ofRunApp(new testApp(
samer@0 10 argc>1 ? argv[1] : HOST,
samer@0 11 argc>2 ? atoi(argv[2]) : PORT,
samer@0 12 argc>3 ? atoi(argv[3]) : 15));
samer@0 13 }