svd2cpp/Src/XmlParser.hpp
2019-11-14 10:34:46 +01:00

14 lines
181 B
C++

#ifndef XML_PARSER
#define XML_PARSER
#include <tinyxml2.h>
#include <string>
struct XmlParser{
XmlParser(const std::string& inputFile);
private:
};
#endif