ivchart.h 488 B

123456789101112131415161718192021222324252627282930
  1. #ifndef IVCHART_H
  2. #define IVCHART_H
  3. #include <QtCore/qglobal.h>
  4. #include <string>
  5. #if defined(IVCHART_LIBRARY)
  6. # define IVCHART_EXPORT Q_DECL_EXPORT
  7. #else
  8. # define IVCHART_EXPORT Q_DECL_IMPORT
  9. #endif
  10. namespace iv {
  11. class IVCHART_EXPORT Ivchart
  12. {
  13. public:
  14. Ivchart();
  15. ~Ivchart();
  16. public:
  17. void chartvalue(std::string varname,const double fvalue,const double fvalue_RangeMin = 0.0,const double fvalue_RangeMax = 1.0);
  18. private:
  19. void * mpimpl;
  20. };
  21. }
  22. #endif // IVCHART_H