TuttleOFX  1
ThinningDefinitions.hpp
Go to the documentation of this file.
00001 #ifndef _TUTTLE_PLUGIN_THINNING_DEFINITIONS_HPP_
00002 #define _TUTTLE_PLUGIN_THINNING_DEFINITIONS_HPP_
00003 
00004 #include <tuttle/plugin/global.hpp>
00005 
00006 
00007 namespace tuttle {
00008 namespace plugin {
00009 namespace thinning {
00010 
00011 static const std::string kParamBorder = "border";
00012 //static const std::string kParamBorderMirror = "Mirror";
00013 //static const std::string kParamBorderConstant = "Constant";
00014 static const std::string kParamBorderBlack = "Black";
00015 static const std::string kParamBorderPadded = "Padded";
00016 
00017 enum EParamBorder
00018 {
00019 //      eParamBorderMirror = 0,
00020 //      eParamBorderConstant,
00021         eParamBorderBlack = 0,
00022         eParamBorderPadded
00023 };
00024 
00025 }
00026 }
00027 }
00028 
00029 #endif