blob: 4437f554293bb8dbef5c8f49b3d6c5fa09d88b43 (
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
|
/*
* Copyright (C) 2007-2023 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#include "bu/textcodecutf8.h"
Bu::TextCodecUtf8::TextCodecUtf8()
{
}
Bu::TextCodecUtf8::~TextCodecUtf8()
{
}
void Bu::TextCodecUtf8::encode( BlobBuilder &rTarget, const Text &rSource )
{
}
int32_t Bu::TextCodecUtf8::decode( TextBuilder &rTarget, const Blob &rSource )
{
}
|