TuttleOFX  1
CTLDefinitions.hpp
Go to the documentation of this file.
00001 #ifndef _TUTTLE_PLUGIN_CTL_DEFINITIONS_HPP_
00002 #define _TUTTLE_PLUGIN_CTL_DEFINITIONS_HPP_
00003 
00004 #include <tuttle/plugin/global.hpp>
00005 #include <tuttle/plugin/context/Definition.hpp>
00006 
00007 namespace tuttle {
00008 namespace plugin {
00009 namespace ctl {
00010 
00011 static const std::string kParamChooseInput           ( "input" );
00012 static const std::string kParamChooseInputCode       ( "code" );
00013 static const std::string kParamChooseInputFile       ( "file" );
00014 
00015 static const std::string kParamChooseInputCodeUpdate ( "update" );
00016 
00017 enum EParamChooseInput
00018 {
00019         eParamChooseInputCode = 0,
00020         eParamChooseInputFile,
00021 };
00022 
00023 static const std::string kParamCTLCode               ( "code" );
00024 
00025 }
00026 }
00027 }
00028 
00029 #endif