|
|
/*************************************************************************** serial1.h - description ------------------- begin : St feb 12 14:14:56 CET 2003 copyright : (C) 2003 by Ondrej Krško email : ondrej.krsko@zoznam.sk ***************************************************************************/ /*************************************************************************** * * * 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 SERIAL1_H #define SERIAL1_H #ifdef HAVE_CONFIG_H #include#endif #include #include /** Serial1 is the base class of the project */ class Serial1 : public QWidget { Q_OBJECT public: /** construtor */ Serial1(QWidget* parent=0, const char *name=0); /** destructor */ ~Serial1(); }; #endif
Generated by: root on localhost.localdomain on Wed Feb 12 14:15:50 2003, using kdoc 2.0a54. |