sigplot.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:1k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = sigplot.h
  3. //
  4. #ifndef _SIGPLOT_H_
  5. #define _SIGPLOT_H_
  6. #include "gensig.h"
  7. class SignalPlotter
  8. {
  9. public:
  10.   SignalPlotter(void);
  11.   
  12.   ~SignalPlotter(void);
  13.   
  14.   void Initialize(void);
  15.   void SetWakeAndSleep( GenericSignal* signal_to_plot,
  16.                         int wakeup,
  17.                         int bedtime );
  18.   void CollectData(void);
  19. private:
  20.   char *Model_Name;
  21.   int Num_Plot_Sigs;
  22.   int *Wakeup_Pass;
  23.   int *Bedtime_Pass;
  24.   std::vector<GenericSignal*> *Plot_Sig_Id;
  25.   
  26. };
  27. #endif //_SIGPLOT_H_