00001 #ifndef KDE__CSTRING_H 00002 #define KDE__CSTRING_H 00003 00004 #include <string> 00005 #include <faith/tools.h> 00006 00007 namespace Faith 00008 { 00009 00010 // PLACEHOLDER 00011 class FAITH_TOOLS_EXPORT CString : public std::string 00012 { 00013 public: 00014 CString(const std::string &s); 00015 CString(const char *s); 00016 00017 const char *data(void) const; 00018 operator const char *(void) const; 00019 }; 00020 00021 } 00022 00023 #endif
1.4.7