| 5 | namespace OpenZWave |
| 6 | { |
| 7 | class SimpleAVCommandItem |
| 8 | { |
| 9 | public: |
| 10 | SimpleAVCommandItem(uint16 const _code, string _name, string _description, uint16 const _version); |
| 11 | uint16 GetCode(); |
| 12 | string GetName(); |
| 13 | string GetDescription(); |
| 14 | uint16 GetVersion(); |
| 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 |