|
|
/*************************************************************************** kwirc.h - description ------------------- begin : sam jui 19 09:19:48 CEST 2003 copyright : (C) 2003 by nohar email : ***************************************************************************/ /*************************************************************************** * * * 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 KWIRC_H #define KWIRC_H #ifdef HAVE_CONFIG_H #include#endif #include #include /** Kwirc is the base class of the project */ class Kwirc : public QWidget { Q_OBJECT public: /** construtor */ Kwirc(QWidget* parent=0, const char *name=0); /** destructor */ ~Kwirc(); }; #endif
Generated by: nohar on laoshi on Sat Jul 19 09:20:28 2003, using kdoc 2.0a54. |