mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
27 lines
507 B
C++
27 lines
507 B
C++
#ifndef CSTRING_H
|
|
#define CSTRING_H
|
|
|
|
#include <cstdint>
|
|
#include <QString>
|
|
|
|
class CString
|
|
{
|
|
public:
|
|
explicit CString(const QString& string);
|
|
~CString();
|
|
|
|
uint8_t* data();
|
|
uint16_t size();
|
|
|
|
static QString toString(const uint8_t* cMessage, const uint16_t cMessageSize);
|
|
|
|
private:
|
|
const static int MAX_SIZE_OF_UTF8_ENCODED_CHARACTER = 4;
|
|
|
|
uint8_t* cString;
|
|
uint16_t cStringSize;
|
|
|
|
static uint16_t fromString(const QString& message, uint8_t* cMessage);
|
|
};
|
|
#endif // CSTRING_H
|