GoPxL SDK
GoGdpMeasurement.h
Go to the documentation of this file.
1 
10 #ifndef GO_PXL_SDK_GOGDPMEASUREMENT_H
11 #define GO_PXL_SDK_GOGDPMEASUREMENT_H
12 
14 
15 class GoGdpMsgTests;
16 
17 namespace GoPxLSdk
18 {
19 
21  {
22  public:
30  ~GoGdpMeasurement() = default;
31 
40  void Deserialize(kSerializer serializer) override;
41 
49  const k64f Value() const;
50 
58  const k8u Decision() const;
59 
60  private:
61  k64f value = 0;
62  k8u decision = 0;
63  friend class ::GoGdpMsgTests;
64  };
65 }
66 
67 
68 #endif
#define GoPxLSdkClass
Definition: Def.h:35
Definition: GoGdpMeasurement.h:20
Declares the GoPxLSdk.GoGdpMsg class.
Definition: Def.h:46
Definition: GoGdpMsg.h:38