#pragma once #include "JObject_NetSDK.h" NS_NETSDK_CFG_BEGIN #define JK_CoverInfo "" class CoverInfo : public JObject { public: JIntHex BackColor; JBoolObj EncodeBlend; JIntHex FrontColor; JBoolObj PreviewBlend; JObjArray > RelativePos; public: CoverInfo(JObject *pParent = NULL, const char *szName = JK_CoverInfo): JObject(pParent,szName), BackColor(this, "BackColor"), EncodeBlend(this, "EncodeBlend"), FrontColor(this, "FrontColor"), PreviewBlend(this, "PreviewBlend"), RelativePos(this, "RelativePos"){ }; ~CoverInfo(void){}; }; NS_NETSDK_CFG_END