00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef LIBLOOKDB_LKSTRING_H
00019 #define LIBLOOKDB_LKSTRING_H
00020
00021
00022
00023 #include "looktypes.h"
00024 #include "lktypebase.h"
00025 #include <string>
00026
00027 namespace look {
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifdef WIN32
00040 #define stringBaseType string
00041 using std::string;
00042 #else
00043 #define stringBaseType std::string
00044 #endif
00045
00047
00056 class LOOKTYPES_DLL LookString : public stringBaseType, public LookTypeBase
00057 {
00058 public:
00059
00060
00062
00063 {
00064 leading = 1,
00065 trailing,
00066 both
00067 };
00068
00069
00070 LookString( const char* theString );
00071 LookString( const char* theString, stringBaseType::size_type theSize );
00072 LookString( const LookString& theString );
00073 LookString( const LookString& theString, stringBaseType::size_type theStart, stringBaseType::size_type theSize );
00074
00075 LookString( const stringBaseType& theString );
00076
00077
00078 LookString( stringBaseType::size_type theSize, char theChar );
00079 LookString();
00080
00081
00082 ~LookString( void );
00083
00084
00085 LookString &operator=( const LookString &theOther );
00086 LookString &operator=( const char* theString );
00087 LookString &operator=( stringBaseType theString );
00088
00089
00090
00091
00092 char& operator[]( int position );
00093 char operator[]( int position ) const;
00094
00095
00096 operator const char*( void ) const;
00097
00098
00099 LookTypeBase* GetNewCopy( void ) const;
00100
00101
00102 long GetTypeID( void ) const;
00103
00104
00105
00106
00107
00108
00109
00110
00111 void Strip( StripType theStripType, char theChar );
00112 void Strip( StripType theStripType, const LookString& theChars );
00113 void StripNotIn( StripType theStripType, const LookString& theChars );
00114
00115 void ToLower( void );
00116 void ToUpper( void );
00117
00118
00119 int ReplaceStrings( const LookString& theFromString,
00120 const LookString& theToString );
00121
00122 protected:
00123
00124 };
00125
00126
00127 }
00128 #endif