view src/main.cpp @ 4:c843a959013f tip

Now using OSC bundles; some reorganisation and const-ification of code.
author samer
date Tue, 28 Feb 2012 11:36:30 +0000
parents b5281b3d55ce
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));
}