AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Pose.h
1
6#pragma once
7#include <aws/rekognition/Rekognition_EXPORTS.h>
8
9namespace Aws
10{
11namespace Utils
12{
13namespace Json
14{
15 class JsonValue;
16 class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Rekognition
20{
21namespace Model
22{
23
30 class Pose
31 {
32 public:
33 AWS_REKOGNITION_API Pose();
34 AWS_REKOGNITION_API Pose(Aws::Utils::Json::JsonView jsonValue);
35 AWS_REKOGNITION_API Pose& operator=(Aws::Utils::Json::JsonView jsonValue);
36 AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const;
37
38
40
43 inline double GetRoll() const{ return m_roll; }
44 inline bool RollHasBeenSet() const { return m_rollHasBeenSet; }
45 inline void SetRoll(double value) { m_rollHasBeenSet = true; m_roll = value; }
46 inline Pose& WithRoll(double value) { SetRoll(value); return *this;}
48
50
53 inline double GetYaw() const{ return m_yaw; }
54 inline bool YawHasBeenSet() const { return m_yawHasBeenSet; }
55 inline void SetYaw(double value) { m_yawHasBeenSet = true; m_yaw = value; }
56 inline Pose& WithYaw(double value) { SetYaw(value); return *this;}
58
60
63 inline double GetPitch() const{ return m_pitch; }
64 inline bool PitchHasBeenSet() const { return m_pitchHasBeenSet; }
65 inline void SetPitch(double value) { m_pitchHasBeenSet = true; m_pitch = value; }
66 inline Pose& WithPitch(double value) { SetPitch(value); return *this;}
68 private:
69
70 double m_roll;
71 bool m_rollHasBeenSet = false;
72
73 double m_yaw;
74 bool m_yawHasBeenSet = false;
75
76 double m_pitch;
77 bool m_pitchHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace Rekognition
82} // namespace Aws
void SetPitch(double value)
Definition Pose.h:65
bool PitchHasBeenSet() const
Definition Pose.h:64
bool RollHasBeenSet() const
Definition Pose.h:44
AWS_REKOGNITION_API Pose()
Pose & WithRoll(double value)
Definition Pose.h:46
AWS_REKOGNITION_API Pose(Aws::Utils::Json::JsonView jsonValue)
double GetYaw() const
Definition Pose.h:53
Pose & WithPitch(double value)
Definition Pose.h:66
double GetRoll() const
Definition Pose.h:43
AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const
void SetYaw(double value)
Definition Pose.h:55
Pose & WithYaw(double value)
Definition Pose.h:56
bool YawHasBeenSet() const
Definition Pose.h:54
double GetPitch() const
Definition Pose.h:63
AWS_REKOGNITION_API Pose & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetRoll(double value)
Definition Pose.h:45
Aws::Utils::Json::JsonValue JsonValue