LibLogicalAccess  2.5.0
An Open Source RFID Library
Loading...
Searching...
No Matches
bcdnibbledatatype.hpp
Go to the documentation of this file.
1
7#ifndef LOGICALACCESS_BCDNIBBLEDATATYPE_HPP
8#define LOGICALACCESS_BCDNIBBLEDATATYPE_HPP
9
12
13namespace logicalaccess
14{
18class LLA_CORE_API BCDNibbleDataType : public DataType
19{
20 public:
27
34
39 std::string getName() const override;
40
45 EncodingType getType() const override;
46
55 BitsetStream convert(unsigned long long data, unsigned int dataLengthBits) override;
56
64 unsigned long long revert(BitsetStream &data, unsigned int dataLengthBits) override;
65};
66}
67
68#endif /* LOGICALACCESS_BCDNIBBLEDATATYPE_HPP */
A BCD Nibble data type class.
Definition: bcdnibbledatatype.hpp:19
Definition: BitsetStream.hpp:15
A data type.
Definition: datatype.hpp:25
Data type.
Encoding.
Definition: asn1.hpp:9
EncodingType
Encoding type.
Definition: encoding.hpp:19