WvStreams
wvattrs.h
1 #ifndef __WVATTRS_H
2 #define __WVATTRS_H
3 
4 #include "wvstring.h"
5 
6 class WvAttrs
7 {
8  char *attrlist;
9  unsigned int attrlen;
10 
11  char *_get(WvStringParm name) const;
12 public:
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
WvString
WvString is an implementation of a simple and efficient printable-string class.
Definition: wvstring.h:329
WvAttrs
Definition: wvattrs.h:6