TuttleOFX  1
ofxClip.h
Go to the documentation of this file.
00001 #ifndef _ofxClip_h_
00002 #define _ofxClip_h_
00003 
00004 #include "ofxCore.h"
00005 
00006 #ifdef __cplusplus
00007 extern "C" {
00008 #endif
00009 
00010 // TUTTLE_TODO
00011 // out what can be output from ofxImageEffect.h
00012 
00013 /** @brief Used as a value for ::kOfxPropType on image effect clips */
00014 #define kOfxTypeClip "OfxTypeClip" // move from ofxImageEffect.h
00015 
00016 /**
00017  * @brief The type of a clip.
00018  *
00019  *  - Type - C string X 1
00020  *  - Property Set - plugin clip descriptor (read only) and instance (read only)
00021  *
00022  * This string will be set to the type that the parameter was create with.
00023  */
00024 #define kOfxClipPropType "OfxClipPropType"
00025 
00026 /** @brief String to identify a clip as an imageClip */
00027 #define kOfxClipTypeImage "OfxClipTypeImage"
00028 
00029 #ifdef __cplusplus
00030 }
00031 #endif
00032 
00033 #endif
00034