WvStreams
unibachelorgen.h
1/* -*- Mode: C++ -*-
2 * Worldvisions Weaver Software:
3 * Copyright (C) 2005 Net Integration Technologies, Inc.
4 *
5 * A UniConf generator that refuses to commit() or refresh(). This is
6 * useful in blocking propogation of these messages upstream.
7 */
8
9#ifndef _UNIBACHELORGEN_H
10#define _UNIBACHELORGEN_H
11
12#include "unifiltergen.h"
13
15{
16public:
19
20 virtual void commit();
21 virtual bool refresh();
22};
23
24#endif /* _UNIBACHELORGEN_H */
An abstract data container that backs a UniConf tree.
Definition: uniconfgen.h:40
virtual void commit()
Commits any changes.
virtual bool refresh()
Refreshes information about a key recursively.
A UniConfGen that delegates all requests to an inner generator.
Definition: unifiltergen.h:18
IUniConfGen * inner() const
Returns the inner generator.
Definition: unifiltergen.h:33
A WvFastString acts exactly like a WvString, but can take (const char *) strings without needing to a...
Definition: wvstring.h:94