mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 20:10:56 +00:00
15 lines
351 B
C++
15 lines
351 B
C++
|
|
#if !defined(INCLUDED_STRING_STRINGFWD_H)
|
|
#define INCLUDED_STRING_STRINGFWD_H
|
|
|
|
// forward-declaration of CopiedString
|
|
|
|
template<typename Type>
|
|
class DefaultAllocator;
|
|
template<typename Allocator>
|
|
class CopiedBuffer;
|
|
template<typename Buffer>
|
|
class String;
|
|
typedef String< CopiedBuffer< DefaultAllocator<char> > > CopiedString;
|
|
|
|
#endif
|