00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #ifndef __CCXX_STRCHAR_H__
00042 #define __CCXX_STRCHAR_H__
00043
00044 #ifndef __CCXX_CONFIG_H__
00045 #include <cc++/config.h>
00046 #endif
00047
00048 #include <cstring>
00049 #include <cctype>
00050 #include <string>
00051
00052 class keystring
00053 {
00054 private:
00055 const char *c_str;
00056
00057 public:
00058 inline keystring(const char *s)
00059 {c_str = s;}
00060
00061 inline keystring()
00062 {c_str = NULL;};
00063
00064 virtual int compare(const char *s2)
00065 {return stricmp(c_str, s2);};
00066
00067 inline const char *operator=(const char *c)
00068 {return c_str = c;};
00069
00070 friend inline int operator==(keystring k1, keystring k2)
00071 {return (k1.compare(k2) == 0);};
00072
00073 friend inline int operator==(keystring k1, const char *c)
00074 {return (k1.compare(c) == 0);};
00075
00076 friend inline int operator!=(keystring k1, const char *c)
00077 {return (k1.compare(c) != 0);};
00078
00079 friend inline int operator==(const char *c, keystring k1)
00080 {return (k1.compare(c) == 0);};
00081
00082 friend inline int operator!=(const char *c, keystring k1)
00083 {return (k1.compare(c) != 0);};
00084
00085 friend inline int operator!=(keystring k1, keystring k2)
00086 {return (k1.compare(k2) != 0);};
00087
00088 friend inline int operator<(keystring k1, keystring k2)
00089 {return (k1.compare(k2) < 0);};
00090
00091 friend inline int operator>(keystring k1, keystring k2)
00092 {return (k1.compare(k2) > 0);};
00093
00094 friend inline int operator<=(keystring k1, keystring k2)
00095 {return (k1.compare(k2) <= 0);};
00096
00097 friend inline int operator>=(keystring k1, keystring k2)
00098 {return (k1.compare(k2) >= 0);};
00099
00100 friend inline int operator!(keystring k1)
00101 {return k1.c_str == NULL;};
00102
00103 friend inline int length(keystring k1)
00104 {return strlen(k1.c_str);};
00105
00106 friend inline const char *text(keystring k1)
00107 {return k1.c_str;};
00108
00109 inline const char *operator ()()
00110 {return c_str;};
00111
00112 inline operator const char *()
00113 {return c_str;};
00114 };
00115
00116 #endif