blob: 72ee2361f67a51d80a2ff2aeace91b5a636b3014 (
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
|
#ifndef __UTF8String_h__
#define __UTF8String_h__ 1
// =================================================================================================
// ADOBE SYSTEMS INCORPORATED
// Copyright 2014 Adobe Systems Incorporated
// All Rights Reserved
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it.
// =================================================================================================
#include "XMPCommon/XMPCommonDefines_I.h"
#include "XMPCommon/Utilities/TAllocator.h"
#include <string>
#include <sstream>
namespace XMP_COMPONENT_INT_NAMESPACE {
typedef std::basic_string< char, std::char_traits< char >, TAllocator< char > > UTF8String;
typedef std::string UTF8StringUnmanaged;
typedef std::basic_stringstream< char, std::char_traits< char >, TAllocator< char > > UTF8StringStream;
typedef std::stringstream UTF8StringStreamUnmanaged;
}
#endif // __UTF8String_h__
|