You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 line
400 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_IntelDataWriteRsp "IntelDataWriteRsp"
  5. class IntelDataWriteRsp : public JObject
  6. {
  7. public:
  8. JIntObj Index;
  9. public:
  10. IntelDataWriteRsp(JObject *pParent = NULL, const char *szName = JK_IntelDataWriteRsp):
  11. JObject(pParent,szName),
  12. Index(this, "Index"){
  13. };
  14. ~IntelDataWriteRsp(void){};
  15. };
  16. NS_NETSDK_CFG_END