Integer to hex string conversion utility class.
More...
#include <tdme/utilities/Hex.h>
|
static const string | encodeInt (const uint64_t decodedInt) |
| Encodes an 64 bit unsigned integer to a hex string representation. More...
|
|
static uint64_t | decodeInt (const string &encodedString) |
| Decodes a hex string representation to an 64 bit unsigned integer. More...
|
|
static void | encodeInt (const uint64_t decodedInt, string &encodedString) |
| Encodes an 64 bit unsigned integer to a hex string representation. More...
|
|
static bool | decodeInt (const string &encodedString, uint64_t &decodedInt) |
| Decodes an hex string representation to 64 bit unsigned integer. More...
|
|
Integer to hex string conversion utility class.
- Author
- Andreas Drewke
Definition at line 16 of file Hex.h.
◆ decodeInt() [1/2]
static uint64_t decodeInt |
( |
const string & |
encodedString | ) |
|
|
inlinestatic |
Decodes a hex string representation to an 64 bit unsigned integer.
- Parameters
-
encodedInt | string value to decode |
- Returns
- decodedString
Definition at line 35 of file Hex.h.
◆ decodeInt() [2/2]
bool decodeInt |
( |
const string & |
encodedString, |
|
|
uint64_t & |
decodedInt |
|
) |
| |
|
static |
Decodes an hex string representation to 64 bit unsigned integer.
- Parameters
-
encodedString | encoded string |
decodedInt | decoded Int |
- Returns
- success
Definition at line 22 of file Hex.cpp.
◆ encodeInt() [1/2]
static const string encodeInt |
( |
const uint64_t |
decodedInt | ) |
|
|
inlinestatic |
Encodes an 64 bit unsigned integer to a hex string representation.
- Parameters
-
decodedInt | int value to encode |
- Returns
- encodedString
Definition at line 24 of file Hex.h.
◆ encodeInt() [2/2]
void encodeInt |
( |
const uint64_t |
decodedInt, |
|
|
string & |
encodedString |
|
) |
| |
|
static |
Encodes an 64 bit unsigned integer to a hex string representation.
- Parameters
-
decodedInt | int value to encode |
encodedString | string |
Definition at line 10 of file Hex.cpp.
The documentation for this class was generated from the following files:
- /home/andreas/Development/drewke.net/tdme2/src/tdme/utilities/Hex.h
- /home/andreas/Development/drewke.net/tdme2/src/tdme/utilities/Hex.cpp