home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_11_09
/
1109100a
< prev
next >
Wrap
Text File
|
1993-07-18
|
191b
|
14 lines
class string
{
public:
string(const string &);
// ...
operator const char *() { return str; }
size_t length() { return len; }
// ...
private:
char *str;
size_t len;
};