#ifndef F_STRING_H #define F_STRING_H #include #include /** * */ template< typename chr, typename chralloc = std::allocator > class FString { public: FString() : pData( NULL ), pnRefs( NULL ) { } virtual ~FString() { } private: long nLength; chr *pData; uint32_t *pnRefs; chralloc aChars; }; #endif