25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
460 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_POINT "POINT"
  5. class JPOINT : public JObject
  6. {
  7. public:
  8. JIntObj bottom;
  9. JIntObj left;
  10. JIntObj right;
  11. JIntObj top;
  12. public:
  13. JPOINT(JObject *pParent = NULL, const char *szName = JK_POINT):
  14. JObject(pParent,szName),
  15. bottom(this, "bottom"),
  16. left(this, "left"),
  17. right(this, "right"),
  18. top(this, "top"){
  19. };
  20. ~JPOINT(void){};
  21. };
  22. NS_NETSDK_CFG_END