sources/network/bytestream.h

changeset 183
9b6a0daedfc0
parent 182
20ca0a6be175
child 190
90bf9049e5eb
--- a/sources/network/bytestream.h	Wed Jan 27 14:04:53 2021 +0200
+++ b/sources/network/bytestream.h	Wed Jan 27 14:05:39 2021 +0200
@@ -65,7 +65,7 @@
 	int8_t readByte();
 	int32_t readLong();
 	int16_t readShort();
-	String readString();
+	std::string readString();
 	float readFloat();
 	void rewind();
 	void seek(int position);
@@ -76,7 +76,7 @@
 	void writeFloat(float value);
 	void writeLong(int32_t value);
 	void writeShort(int16_t value);
-	void writeString(const String& string);
+	void writeString(const std::string& string);
 
 private:
 	ByteArray& m_data;

mercurial