WvStreams
include/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
14class UniBachelorGen : public UniFilterGen
15{
16public:
17 UniBachelorGen(IUniConfGen *inner);
18 UniBachelorGen(WvStringParm moniker);
19
20 virtual void commit();
21 virtual bool refresh();
22};
23
24#endif /* _UNIBACHELORGEN_H */
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.
IUniConfGen * inner() const
Returns the inner generator.