|
|
// -*- c++ -*- /*************************************************************************** kpartedview.h - description ------------------- begin : Fri Jul 13 17:32:54 BST 2001 copyright : (C) 2001 by Richard Moore email : rich@kde.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 KPARTEDVIEW_H #define KPARTEDVIEW_H // include files for QT #include <qwidget.h> // application specific includes #include "kparteddoc.h" /** * This class provides an incomplete base for your application view. */ class KPartEdView : public QWidget { Q_OBJECT public: KPartEdView(QWidget *parent=0, KPartEdDoc* doc=0); ~KPartEdView(); protected slots: void slotDocumentChanged(); }; #endif
Generated by: rich@pegasus on Fri Jul 13 17:33:54 2001, using kdoc 2.0a45. |