WvStreams
include/wvattrs.h
1#ifndef __WVATTRS_H
2#define __WVATTRS_H
3
4#include "wvstring.h"
5
6class WvAttrs
7{
8 char *attrlist;
9 unsigned int attrlen;
10
11 char *_get(WvStringParm name) const;
12public:
13 WvAttrs();
14 WvAttrs(const WvAttrs &copy);
15 virtual ~WvAttrs();
16
17 void set(WvStringParm name, WvStringParm value);
18 inline WvString get(WvStringParm name) const
19 { return _get(name); }
20};
21
22#endif
A WvFastString acts exactly like a WvString, but can take (const char *) strings without needing to a...
WvString is an implementation of a simple and efficient printable-string class.