diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-07-14 07:55:57 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-07-14 07:55:57 +0000 |
commit | 5b650d2d0c96545c5a276a1b819d0f5baebf8204 (patch) | |
tree | e3e4a43ea242d1d1f771c7ba251f47ac7f0db296 /src/staticstring.h | |
parent | f0f38e0f164b7e8b9132665407445d93f33be7ad (diff) | |
download | libbu++-5b650d2d0c96545c5a276a1b819d0f5baebf8204.tar.gz libbu++-5b650d2d0c96545c5a276a1b819d0f5baebf8204.tar.bz2 libbu++-5b650d2d0c96545c5a276a1b819d0f5baebf8204.tar.xz libbu++-5b650d2d0c96545c5a276a1b819d0f5baebf8204.zip |
Changed some stuff, not sure what all, minor stuff.
Diffstat (limited to '')
-rw-r--r-- | src/staticstring.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/staticstring.h b/src/staticstring.h index 7ffa21f..732e860 100644 --- a/src/staticstring.h +++ b/src/staticstring.h | |||
@@ -38,6 +38,10 @@ public: | |||
38 | operator int(); | 38 | operator int(); |
39 | char *operator+( int nAmnt ); | 39 | char *operator+( int nAmnt ); |
40 | char *operator-( int nAmnt ); | 40 | char *operator-( int nAmnt ); |
41 | bool operator==( const char *str ); | ||
42 | bool operator==( StaticString &str ); | ||
43 | bool operator!=( const char *str ); | ||
44 | bool operator!=( StaticString &str ); | ||
41 | 45 | ||
42 | void clear(); | 46 | void clear(); |
43 | 47 | ||