IDFstepper
IDF to STEP converter
|
00001 #ifndef CONFIGPARSER_HPP_INCLUDED 00002 #define CONFIGPARSER_HPP_INCLUDED 00003 00004 #include "ConfigType.hpp" 00005 #include <string> 00006 00007 namespace config { 00008 00024 bool parseConfig( 00025 std::string::const_iterator& iter, 00026 std::string::const_iterator end, 00027 Config& conf); 00028 00029 } 00030 00031 #endif 00032 00033