2
0
Kim Kulling 2 жил өмнө
parent
commit
534ee288c5

+ 2 - 6
samples/SharedCode/UTFConverter.h

@@ -3,9 +3,7 @@
 Open Asset Import Library (assimp)
 Open Asset Import Library (assimp)
 ---------------------------------------------------------------------------
 ---------------------------------------------------------------------------
 
 
-Copyright (c) 2006-2020, assimp team
-
-
+Copyright (c) 2006-2023, assimp team
 
 
 All rights reserved.
 All rights reserved.
 
 
@@ -56,11 +54,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 namespace AssimpSamples {
 namespace AssimpSamples {
 namespace SharedCode {
 namespace SharedCode {
 
 
-// Used to convert between multibyte and unicode strings.
+/// @brief Used to convert between multibyte and unicode strings.
 class UTFConverter {
 class UTFConverter {
 public:
 public:
-    //utf8::utf16to8(start, end, back_inserter(str));
-
     UTFConverter(const char* s) : s_(s), ws_() { 
     UTFConverter(const char* s) : s_(s), ws_() { 
         std::vector<unsigned char> str;
         std::vector<unsigned char> str;
         utf8::utf8to16(s, s + std::strlen(s) + 1, back_inserter(str));
         utf8::utf8to16(s, s + std::strlen(s) + 1, back_inserter(str));