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