IDFstepper
IDF to STEP converter
|
00001 #ifndef CONFIGTYPE_HPP_INCLUDED 00002 #define CONFIGTYPE_HPP_INCLUDED 00003 00004 #include <vector> 00005 #include <string> 00006 #include <boost/variant.hpp> 00007 00008 namespace config { 00009 00013 typedef boost::variant<bool, double, std::string> Value; 00014 00018 typedef std::vector<std::pair<std::string, Value> > Config; 00019 00020 } 00021 00022 #endif 00023