1 #ifndef NUITRACK_SENSORISSUE_H_
2 #define NUITRACK_SENSORISSUE_H_
12 const int SENSOR_ISSUES_STREAM = 9;
24 typedef std::shared_ptr<SensorIssue>
Ptr;
31 static std::string _type =
"SensorIssue";
39 std::string issueName =
"SensorIssue")
40 :
Issue(issueId, issueName)
SensorIssue(IssueId issueId=SENSOR_ISSUE, std::string issueName="SensorIssue")
Constructs a sensor issue object from its ID and name.
Definition: SensorIssue.h:38
static std::string getType()
Returns the issue type as a string.
Definition: SensorIssue.h:29
Represents the sensor issue.
Definition: SensorIssue.h:18
IssueId
Describes an issue identifier.
Definition: Issue.h:16
std::shared_ptr< SensorIssue > Ptr
Smart pointer to access the SensorIssue instance.
Definition: SensorIssue.h:24
Stores general information about a issue.
Definition: Issue.h:30