LibLogicalAccess  2.5.0
An Open Source RFID Library
Loading...
Searching...
No Matches
nodatarepresentation.hpp
Go to the documentation of this file.
1
7#ifndef LOGICALACCESS_NODATAREPRESENTATION_HPP
8#define LOGICALACCESS_NODATAREPRESENTATION_HPP
9
12
13namespace logicalaccess
14{
18class LLA_CORE_API NoDataRepresentation : public DataRepresentation
19{
20 public:
27
34
39 std::string getName() const override;
40
45 EncodingType getType() const override;
46
56 BitsetStream convertNumeric(const BitsetStream &data) override;
57
67 BitsetStream convertBinary(const BitsetStream &data) override;
68
74 unsigned int convertLength(unsigned int lengthBits) override;
75
85 BitsetStream revertNumeric(const BitsetStream &data) override;
86
96 BitsetStream revertBinary(const BitsetStream &data) override;
97};
98}
99
100#endif /* LOGICALACCESS_NODATAREPRESENTATION_HPP */
Definition: BitsetStream.hpp:15
A data representation.
Definition: datarepresentation.hpp:20
A data representation which do nothing class.
Definition: nodatarepresentation.hpp:19
Encoding.
Definition: asn1.hpp:9
EncodingType
Encoding type.
Definition: encoding.hpp:19