|
|
/*************************************************************************** knzb.h - description ------------------- begin : Wed Jun 23 23:02:12 BST 2004 copyright : (C) 2004 by David Pye email : dmp@davidmpye.dyndns.org ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef KNZB_H #define KNZB_H #ifdef HAVE_CONFIG_H #include#endif #include #include /** Knzb is the base class of the project */ class Knzb : public QWidget { Q_OBJECT public: /** construtor */ Knzb(QWidget* parent=0, const char *name=0); /** destructor */ ~Knzb(); }; #endif
Generated by: dmp on platinum on Wed Jun 23 23:02:56 2004, using kdoc 2.0a54. |