ReadConfig.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #ifndef READ_CONFIG_HPP
  2. #define READ_CONFIG_HPP
  3. /**
  4.  */
  5. class ReadConfigReq {
  6. public:
  7.   STATIC_CONST( SignalLength = 3 );
  8.   
  9.   Uint32 senderRef;
  10.   Uint32 senderData;
  11.   Uint32 noOfParameters; // 0 Means read all relevant for block
  12.   Uint32 parameters[1];  // see mgmapi_config_parameters.h
  13. };
  14. class ReadConfigConf {
  15. public:
  16.   STATIC_CONST( SignalLength = 2 );
  17.   Uint32 senderRef;
  18.   Uint32 senderData;
  19. };
  20. #endif