00001 /* === S Y N F I G ========================================================= */ 00021 /* ========================================================================= */ 00022 00023 /* === S T A R T =========================================================== */ 00024 00025 #ifndef __SYNFIG_STRING_H 00026 #define __SYNFIG_STRING_H 00027 00028 /* === H E A D E R S ======================================================= */ 00029 00030 #include <string> 00031 00032 /* === M A C R O S ========================================================= */ 00033 00034 /* === T Y P E D E F S ===================================================== */ 00035 00036 /* === C L A S S E S & S T R U C T S ======================================= */ 00037 00038 /* 00039 namespace std 00040 { 00041 template<class _CharT> struct char_traits; 00042 template<> struct char_traits<char>; 00043 template<typename _Alloc> class allocator; 00044 template<typename _CharT, typename _Traits,typename _Alloc>class basic_string; 00045 typedef basic_string<char,char_traits<char>,allocator<char> > string; 00046 00047 }; // END of namespace std 00048 */ 00049 00050 namespace synfig 00051 { 00052 00056 typedef std::string String; 00057 00058 }; // END of namespace synfig 00059 00060 /* === E N D =============================================================== */ 00061 00062 #endif