#ifndef OF_ADDONS
#define OF_ADDONS


// here is where you paste any "add me to ofAddons.h" code
// for the addon you want to add
// you will also need to follow the other steps
// like adding the library linking paths, etc,etc.

//-------------------------------------------- openCV
#ifdef OF_ADDON_USING_OFOPENCV
	#include "ofCvMain.h"
#endif 

//-------------------------------------------- obj loader
#ifdef OF_ADDON_USING_OBJLOADER
	#include "ofObjLoader.h"
#endif

//-------------------------------------------- dir list
#ifdef OF_ADDON_USING_OFDIRLIST
	#include "ofDirList.h"
#endif

//-------------------------------------------- vector math
#ifdef OF_ADDON_USING_OFVECTORMATH
	#include "ofVectorMath.h"
#endif

//-------------------------------------------- network
#ifdef OF_ADDON_USING_OFNETWORK
	#include "ofNetwork.h"
#endif

//-------------------------------------------- OSC
#ifdef OF_ADDON_USING_OFOSC
	#include "ofOsc.h"
#endif

//-------------------------------------------- ofthread
#ifdef OF_ADDON_USING_OFTHREAD
	#include "ofThread.h"
#endif

//-------------------------------------------- ofXML
#ifdef OF_ADDON_USING_OFXMLSETTINGS
	#include "ofXMLSettings.h"
#endif

//-------------------------------------------- openCV
#ifdef OF_ADDON_USING_OFVECTORGRAPHICS
	#include "ofVectorGraphics.h"
#endif 


#endif
