view 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
line wrap: on
line source
#include "ofMain.h"
#include "testApp.h"

#define HOST "localhost"
#define PORT 7770

//========================================================================
int main(int argc, const char **argv){
	ofRunApp(new testApp(
	   argc>1 ? argv[1] : HOST, 
	   argc>2 ? atoi(argv[2]) : PORT,
	   argc>3 ? atoi(argv[3]) : 15));
}