mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
/* |
|
Copyright (C) 2013 by Maxim Biro <nurupo.contributions@gmail.com> |
|
|
|
This file is part of Tox Qt GUI. |
|
|
|
This program is free software: you can redistribute it and/or modify |
|
it under the terms of the GNU General Public License as published by |
|
the Free Software Foundation, either version 3 of the License, or |
|
(at your option) any later version. |
|
This program is distributed in the hope that it will be useful, |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
|
|
See the COPYING file for more details. |
|
*/ |
|
|
|
#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
|
|
|