IDFstepper
IDF to STEP converter
inc/IdfParser.hpp
Go to the documentation of this file.
00001 #ifndef IDFPARSER_HPP_INCLUDED
00002 #define IDFPARSER_HPP_INCLUDED
00003 
00004 #include "IdfStructure.hpp"
00005 #include <string>
00006 
00007 namespace idf {
00008   
00024   bool parseBoardPanel(
00025           std::string::const_iterator& iter,
00026           std::string::const_iterator end,
00027           BoardPanelStruct& idfStruct);
00028   
00042   bool parseLibrary(
00043           std::string::const_iterator& iter,
00044           std::string::const_iterator end,
00045           LibraryStruct& idfStruct);
00046 
00047 }
00048 
00049 #endif
00050 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines