00001 #ifndef OF_MAIN 00002 #define OF_MAIN 00003 00004 //-------------------------- 00005 // utils 00006 #include "ofConstants.h" 00007 #include "ofMath.h" 00008 #include "ofUtils.h" 00009 #include "ofTypes.h" 00010 00011 //-------------------------- 00012 // communication 00013 #ifndef TARGET_OF_IPHONE 00014 #include "ofSerial.h" 00015 #include "ofStandardFirmata.h" 00016 #include "ofArduino.h" 00017 #endif 00018 00019 //-------------------------- 00020 // graphics 00021 #include "ofTexture.h" 00022 #include "ofTrueTypeFont.h" 00023 #include "ofGraphics.h" 00024 #include "ofImage.h" 00025 00026 //-------------------------- 00027 // app 00028 #include "ofBaseApp.h" 00029 #include "ofAppRunner.h" 00030 00031 //-------------------------- 00032 // audio 00033 #include "ofSoundStream.h" 00034 #include "ofSoundPlayer.h" 00035 00036 //-------------------------- 00037 // video 00038 #ifndef TARGET_OF_IPHONE //(temp for now, until this is ported) 00039 #include "ofVideoGrabber.h" 00040 #include "ofVideoPlayer.h" 00041 #endif 00042 00043 //-------------------------- 00044 // events 00045 #include "ofEvents.h" 00046 00047 #endif