123456789101112131415161718192021222324252627282930 |
- #ifndef IVCHART_H
- #define IVCHART_H
- #include <QtCore/qglobal.h>
- #include <string>
- #if defined(IVCHART_LIBRARY)
- # define IVCHART_EXPORT Q_DECL_EXPORT
- #else
- # define IVCHART_EXPORT Q_DECL_IMPORT
- #endif
- namespace iv {
- class IVCHART_EXPORT Ivchart
- {
- public:
- Ivchart();
- ~Ivchart();
- public:
- void chartvalue(std::string varname,const double fvalue,const double fvalue_RangeMin = 0.0,const double fvalue_RangeMax = 1.0);
- private:
- void * mpimpl;
- };
- }
- #endif // IVCHART_H
|