OpenZWave Library 1.4.0
Loading...
Searching...
No Matches
ValueInt.h
Go to the documentation of this file.
1//-----------------------------------------------------------------------------
2//
3// ValueInt.h
4//
5// Represents a 32-bit value
6//
7// Copyright (c) 2010 Mal Lansell <openzwave@lansell.org>
8//
9// SOFTWARE NOTICE AND LICENSE
10//
11// This file is part of OpenZWave.
12//
13// OpenZWave is free software: you can redistribute it and/or modify
14// it under the terms of the GNU Lesser General Public License as published
15// by the Free Software Foundation, either version 3 of the License,
16// or (at your option) any later version.
17//
18// OpenZWave is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU Lesser General Public License for more details.
22//
23// You should have received a copy of the GNU Lesser General Public License
24// along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
25//
26//-----------------------------------------------------------------------------
27
28#ifndef _ValueInt_H
29#define _ValueInt_H
30
31#include <string>
32#include "Defs.h"
33#include "value_classes/Value.h"
34
35class TiXmlElement;
36
37namespace OpenZWave
38{
39 class Msg;
40 class Node;
41
44 class ValueInt: public Value
45 {
46 public:
47 ValueInt( uint32 const _homeId, uint8 const _nodeId, ValueID::ValueGenre const _genre, uint8 const _commandClassId, uint8 const _instance, uint8 const _index, string const& _label, string const& _units, bool const _readOnly, bool const _writeOnly, int32 const _value, uint8 const _pollIntensity );
48 ValueInt();
49 virtual ~ValueInt(){}
50
51 bool Set( int32 const _value );
52 void OnValueRefreshed( int32 const _value );
53
54 // From Value
55 virtual string const GetAsString() const;
56 virtual bool SetFromString( string const& _value );
57 virtual void ReadXML( uint32 const _homeId, uint8 const _nodeId, uint8 const _commandClassId, TiXmlElement const* _valueElement );
58 virtual void WriteXML( TiXmlElement* _valueElement );
59
60 int32 GetValue()const{ return m_value; }
61
62 private:
63 int32 m_value; // the current value
64 int32 m_valueCheck; // the previous value (used for double-checking spurious value reads)
65 };
66
67} // namespace OpenZWave
68
69#endif
unsigned int uint32
Definition Defs.h:80
signed int int32
Definition Defs.h:79
unsigned char uint8
Definition Defs.h:74
Message object to be passed to and from devices on the Z-Wave network.
Definition Msg.h:45
The Node class describes a Z-Wave node object...typically a device on the Z-Wave network.
Definition Node.h:65
ValueGenre
Definition ValueID.h:72
ValueInt()
Definition ValueInt.cpp:72
ValueInt(uint32 const _homeId, uint8 const _nodeId, ValueID::ValueGenre const _genre, uint8 const _commandClassId, uint8 const _instance, uint8 const _index, string const &_label, string const &_units, bool const _readOnly, bool const _writeOnly, int32 const _value, uint8 const _pollIntensity)
Definition ValueInt.cpp:45
virtual void WriteXML(TiXmlElement *_valueElement)
Definition ValueInt.cpp:131
int32 GetValue() const
Definition ValueInt.h:60
virtual bool SetFromString(string const &_value)
Definition ValueInt.cpp:93
virtual ~ValueInt()
Definition ValueInt.h:49
virtual string const GetAsString() const
Definition ValueInt.cpp:84
virtual void ReadXML(uint32 const _homeId, uint8 const _nodeId, uint8 const _commandClassId, TiXmlElement const *_valueElement)
Definition ValueInt.cpp:106
void OnValueRefreshed()
Definition Value.cpp:412
Value(uint32 const _homeId, uint8 const _nodeId, ValueID::ValueGenre const _genre, uint8 const _commandClassId, uint8 const _instance, uint8 const _index, ValueID::ValueType const _type, string const &_label, string const &_units, bool const _readOnly, bool const _writeOnly, bool const _isset, uint8 const _pollIntensity)
Definition Value.cpp:71
bool Set()
Definition Value.cpp:350
Definition Bitfield.h:35