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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = dice.h
  3. //
  4. #ifndef _DICE_H_
  5. #define _DICE_H_
  6. #include "psmodel.h"
  7. //#include "typedefs.h"
  8. #include "signal_T.h"
  9. class DiceRoller : public PracSimModel
  10. {
  11. public:
  12.   DiceRoller( char* instance_nam,
  13.              PracSimModel* outer_model,
  14.              Signal<byte_t>* out_sig);
  15.   ~DiceRoller(void);
  16.   void Initialize(void);
  17.   int Execute(void);
  18. private:
  19.   long Initial_Seed;
  20.   long Seed;
  21.   int Block_Size;
  22.   int Faces_Per_Die;
  23.   int Num_Symbs;
  24.   byte_t Old_Face_Val;
  25.   Signal<byte_t> *Out_Sig;
  26.   
  27. };
  28. #endif //_SYMBGEN_H_