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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = contin_delay_tester.h
  3. //
  4. #ifndef _CONTIN_DELAY_TESTER_H_
  5. #define _CONTIN_DELAY_TESTER_H_
  6. #include "signal_T.h"
  7. #include "control_T.h"
  8. #include "psmodel.h"
  9. template <class T>
  10. class ContinuousDelayTester : public PracSimModel
  11. {
  12. public:
  13.   ContinuousDelayTester< T >( char* instance_name,
  14.                     PracSimModel* outer_model,
  15.                     Signal<T>* in_signal,
  16.                     Signal<T>* out_signal,
  17.                     Control<float>* delay_value,
  18.                     Control<bool>* delay_change_enabled);
  19.   ~ContinuousDelayTester<T>(void);
  20.   void Initialize(void);
  21.   int Execute(void);
  22. private:
  23.   //--------------------------------------------
  24.   //  state variables and derived parameters
  25.   int Block_Size;
  26.   double Samp_Intvl;
  27.   //--------------------------
  28.   //  Signals
  29.   Signal<T> *In_Sig;
  30.   Signal<T> *Out_Sig;  
  31.   //-----------------------------------
  32.   //  Controls
  33.   Control<float> *Delay_Value;
  34.   Control<bool> *Delay_Change_Enabled;
  35. };
  36. #endif