diff options
Diffstat (limited to 'src/unstable/textcodecutf8.cpp')
-rw-r--r-- | src/unstable/textcodecutf8.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/unstable/textcodecutf8.cpp b/src/unstable/textcodecutf8.cpp index e69de29..ce4e0a2 100644 --- a/src/unstable/textcodecutf8.cpp +++ b/src/unstable/textcodecutf8.cpp | |||
@@ -0,0 +1,25 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2019 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #include "bu/textcodecutf8.h" | ||
9 | |||
10 | Bu::TextCodecUtf8::TextCodecUtf8() | ||
11 | { | ||
12 | } | ||
13 | |||
14 | Bu::TextCodecUtf8::~TextCodecUtf8() | ||
15 | { | ||
16 | } | ||
17 | |||
18 | void Bu::TextCodecUtf8::encode( BlobBuilder &rTarget, const Text &rSource ) | ||
19 | { | ||
20 | } | ||
21 | |||
22 | int32_t Bu::TextCodecUtf8::decode( TextBuilder &rTarget, const Blob &rSource ) | ||
23 | { | ||
24 | } | ||
25 | |||