1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef XMLPARAM_H
- #define XMLPARAM_H
- #include <QtCore/qglobal.h>
- #include <string>
- #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
|