OpenZWave Library  1.6.0
SimpleAVCommandItem.h
Go to the documentation of this file.
1 #include <string>
2 #include <vector>
3 #include "Defs.h"
4 
5 namespace OpenZWave
6 {
8  {
9  public:
10  SimpleAVCommandItem(uint16 const _code, string _name, string _description, uint16 const _version);
11  uint16 GetCode();
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 
Definition: Bitfield.h:34
uint16 GetVersion()
Definition: SimpleAVCommandItem.cpp:41
SimpleAVCommandItem(uint16 const _code, string _name, string _description, uint16 const _version)
Definition: SimpleAVCommandItem.cpp:15
string GetDescription()
Definition: SimpleAVCommandItem.cpp:59
unsigned short uint16
Definition: Defs.h:92
uint16 GetCode()
Definition: SimpleAVCommandItem.cpp:32
string GetName()
Definition: SimpleAVCommandItem.cpp:50
Definition: SimpleAVCommandItem.h:7
static vector< SimpleAVCommandItem > GetCommands()
Definition: SimpleAVCommandItem.cpp:68