aboutsummaryrefslogtreecommitdiff
path: root/src/string.cpp
blob: 416375d40a3b8bb003f87834c76ccb270e31672a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "gats/string.h"

#include "gats/integer.h"

Gats::String::String()
{
}

Gats::String::String( const String &s ) :
	Bu::FString( s )
{
}

Gats::String::String( const Bu::FString &s ) :
	Bu::FString( s )
{
}

Gats::String::~String()
{
}

void Gats::String::write( Bu::Stream &rOut ) const
{
	rOut.write("s", 1 );
	uint32_t iSize = getSize();
	Gats::Integer::writePackedInt( rOut, iSize );
	rOut.write( getStr(), iSize );
}

void Gats::String::read( Bu::Stream &rIn, char cType )
{
	uint32_t iSize;
	Gats::Integer::readPackedInt( rIn, iSize );
	setSize( iSize );
	rIn.read( getStr(), iSize );
}