OpenZWave Library 1.6.0
Loading...
Searching...
No Matches
SimpleAVCommandItem.h
Go to the documentation of this file.
1#include <string>
2#include <vector>
3#include "Defs.h"
4
5namespace OpenZWave
6{
8 {
9 public:
10 SimpleAVCommandItem(uint16 const _code, string _name, string _description, uint16 const _version);
12 string GetName();
13 string GetDescription();
15
16 static vector<SimpleAVCommandItem> GetCommands();
17
18 private:
19 uint16 m_code;
20 string m_name;
21 string m_description;
22 uint16 m_version;
23 };
24}
25
unsigned short uint16
Definition: Defs.h:92
Definition: SimpleAVCommandItem.h:8
string GetDescription()
Definition: SimpleAVCommandItem.cpp:59
static vector< SimpleAVCommandItem > GetCommands()
Definition: SimpleAVCommandItem.cpp:68
string GetName()
Definition: SimpleAVCommandItem.cpp:50
uint16 GetVersion()
Definition: SimpleAVCommandItem.cpp:41
uint16 GetCode()
Definition: SimpleAVCommandItem.cpp:32
Definition: Bitfield.h:35