GoPxL SDK
GoDataSet.h
Go to the documentation of this file.
1 
10 #ifndef GO_PXL_SDK_GOGDPDATASET_H
11 #define GO_PXL_SDK_GOGDPDATASET_H
12 
15 
16 namespace GoPxLSdk
17 {
19  {
20  public:
27  void Clear();
28 
36  void Add(std::shared_ptr<GoGdpMsg> pGoGdpMsg);
37 
46  const GoGdpMsg& GdpMsgAt(size_t index) const;
47 
55  const size_t Count() const;
56 
57  private:
58  std::vector<std::shared_ptr<GoGdpMsg>> content;
59  };
60 }
61 
62 #endif
63 
64 
65 
66 
Definition: GoDataSet.h:18
#define GoPxLSdkClass
Definition: Def.h:35
Declares the GoPxLSdk.GoGdpMsg class.
Definition: Def.h:46
Definition: GoGdpMsg.h:38