AVEnc_VideoWidget.h 815 B

1234567891011121314151617181920212223242526272829
  1. #pragma once
  2. #include "FunSDK/JObject.h"
  3. #include "ChannelTitle.h"
  4. #include "ChannelTitleAttribute.h"
  5. #include "TimeTitleAttribute.h"
  6. #define JK_AVEnc_VideoWidget "AVEnc.VideoWidget"
  7. class AVEnc_VideoWidget : public JObject
  8. {
  9. public:
  10. ChannelTitle mChannelTitle;
  11. ChannelTitleAttribute mChannelTitleAttribute;
  12. JObjArray<JObject> Covers;
  13. JIntObj CoversNum;
  14. TimeTitleAttribute mTimeTitleAttribute;
  15. public:
  16. AVEnc_VideoWidget(JObject *pParent = NULL, const char *szName = JK_AVEnc_VideoWidget):
  17. JObject(pParent,szName),
  18. mChannelTitle(this, "ChannelTitle"),
  19. mChannelTitleAttribute(this, "ChannelTitleAttribute"),
  20. Covers(this, "Covers"),
  21. CoversNum(this, "CoversNum"),
  22. mTimeTitleAttribute(this, "TimeTitleAttribute"){
  23. };
  24. ~AVEnc_VideoWidget(void){};
  25. };