TuttleOFX  1
ColorBarsDefinitions.hpp
Go to the documentation of this file.
00001 #ifndef _TUTTLE_PLUGIN_COLORBARS_DEFINITIONS_HPP_
00002 #define _TUTTLE_PLUGIN_COLORBARS_DEFINITIONS_HPP_
00003 
00004 #include <tuttle/plugin/global.hpp>
00005 
00006 
00007 namespace tuttle {
00008 namespace plugin {
00009 namespace colorBars {
00010 
00011 static const std::string kColorBarsLevels = "levels";
00012 static const std::string kColorBarsLevels100 = "100%";
00013 static const std::string kColorBarsLevels75  = "75%";
00014 
00015 enum EColorBarsLevels{
00016         eColorBarsLevels100 = 0,
00017         eColorBarsLevels75
00018 };
00019 
00020 }
00021 }
00022 }
00023 
00024 #endif