#ifndef XMLPARAM_H #define XMLPARAM_H #include #include #if defined(XMLPARAM_LIBRARY) # define XMLPARAMSHARED_EXPORT Q_DECL_EXPORT #else # define XMLPARAMSHARED_EXPORT Q_DECL_IMPORT #endif namespace iv { namespace xmlparam { class XMLPARAMSHARED_EXPORT Xmlparam { public: Xmlparam(std::string filepath); std::string GetParam(std::string paramname,std::string defaultvalue); QString GetVersion(); private: int * mpx; }; } } #endif // XMLPARAM_H