TuttleOFX  1
ColorWheelDefinitions.hpp
Go to the documentation of this file.
00001 #ifndef _TUTTLE_PLUGIN_COLORWHEEL_DEFINITIONS_HPP_
00002 #define _TUTTLE_PLUGIN_COLORWHEEL_DEFINITIONS_HPP_
00003 
00004 #include <tuttle/plugin/global.hpp>
00005 
00006 
00007 namespace tuttle {
00008 namespace plugin {
00009 namespace colorWheel {
00010 
00011 static const std::string kColorWheelMode  = "type";
00012 
00013 static const std::string kColorWheelModeWhite = "white";
00014 static const std::string kColorWheelModeBlack = "black";
00015 
00016 static const std::string kColorWheelModeRainbow = "rainbow";
00017 
00018 enum EColorWheelMode
00019 {
00020     eColorWheelModeWhite = 0,
00021     eColorWheelModeBlack,
00022     eColorWheelModeRainbow
00023 };
00024 
00025 }
00026 }
00027 }
00028 
00029 #endif