WvStreams
unibachelorgen.h
00001 /* -*- Mode: C++ -*-
00002  * Worldvisions Weaver Software:
00003  *   Copyright (C) 2005 Net Integration Technologies, Inc.
00004  *
00005  * A UniConf generator that refuses to commit() or refresh().  This is
00006  * useful in blocking propogation of these messages upstream.
00007  */
00008 
00009 #ifndef _UNIBACHELORGEN_H
00010 #define _UNIBACHELORGEN_H
00011 
00012 #include "unifiltergen.h"
00013 
00014 class UniBachelorGen : public UniFilterGen
00015 {
00016 public:
00017     UniBachelorGen(IUniConfGen *inner);
00018     UniBachelorGen(WvStringParm moniker);
00019 
00020     virtual void commit();
00021     virtual bool refresh();
00022 };
00023 
00024 #endif /* _UNIBACHELORGEN_H */