|
|
/*************************************************************************** kvdr.h - description ------------------- begin : Fre Mär 29 18:38:37 CET 2002 copyright : (C) 2002 by Guido email : gfiala@s.netic.de ***************************************************************************/ /*************************************************************************** * * * 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 KVDR_H #define KVDR_H #ifdef HAVE_CONFIG_H #include#endif #include #include /** Kvdr is the base class of the project */ class Kvdr : public QWidget { Q_OBJECT public: /** construtor */ Kvdr(QWidget* parent=0, const char *name=0); /** destructor */ ~Kvdr(); }; #endif
Generated by: guido on wonderbox on Fri Mar 29 18:39:39 2002, using kdoc 2.0a53. |