]> ruin.nu Git - eonsl.git/blob - eonsl/eonslview.h
These files is for making the project
[eonsl.git] / eonsl / eonslview.h
1 /***************************************************************************
2                           eonslview.h  -  description
3                              -------------------
4     begin     : mån okt 23 17:11:28 CEST 2000
5     copyright : (C) 2000 by Michael Andreen
6     email     : whale@linux.nu
7     changes   :
8  ***************************************************************************/
9
10 /***************************************************************************
11  *                                                                         *
12  *   This program is free software; you can redistribute it and/or modify  *
13  *   it under the terms of the GNU General Public License as published by  *
14  *   the Free Software Foundation; either version 2 of the License, or     *
15  *   (at your option) any later version.                                   *
16  *                                                                         *
17  ***************************************************************************/
18
19 #ifndef EONSLVIEW_H
20 #define EONSLVIEW_H
21
22 // include files for QT
23 #include <qwidget.h>
24
25 // application specific includes
26 #include "eonsldoc.h"
27
28 /**
29  * This class provides an incomplete base for your application view. 
30  */
31
32 class EonSLView : public QWidget
33 {
34   Q_OBJECT
35   public:
36     EonSLView(QWidget *parent=0, EonSLDoc* doc=0);
37     ~EonSLView();
38   
39   protected slots:
40     void slotDocumentChanged();
41   
42 };
43
44 #endif