|
|
/*************************************************************************** kquick.h - description ------------------- begin : Sam Mai 4 16:39:18 CEST 2002 copyright : (C) 2002 by Philipp Gühring email : pg@futureware.at ***************************************************************************/ /*************************************************************************** * * * 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 KQUICK_H #define KQUICK_H #ifdef HAVE_CONFIG_H #include#endif #include #include /** KQuick is the base class of the project */ class KQuick : public QWidget { Q_OBJECT public: /** construtor */ KQuick(QWidget* parent=0, const char *name=0); /** destructor */ ~KQuick(); }; #endif
Generated by: philipp on linux2 on Sat May 4 16:40:31 2002, using kdoc 2.0a54. |