]> ruin.nu Git - eonsl.git/blobdiff - eonsl/eonslview.h
These files is for making the project
[eonsl.git] / eonsl / eonslview.h
diff --git a/eonsl/eonslview.h b/eonsl/eonslview.h
new file mode 100644 (file)
index 0000000..60893fb
--- /dev/null
@@ -0,0 +1,44 @@
+/***************************************************************************
+                          eonslview.h  -  description
+                             -------------------
+    begin     : mån okt 23 17:11:28 CEST 2000
+    copyright : (C) 2000 by Michael Andreen
+    email     : whale@linux.nu
+    changes   :
+ ***************************************************************************/
+
+/***************************************************************************
+ *                                                                         *
+ *   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 EONSLVIEW_H
+#define EONSLVIEW_H
+
+// include files for QT
+#include <qwidget.h>
+
+// application specific includes
+#include "eonsldoc.h"
+
+/**
+ * This class provides an incomplete base for your application view. 
+ */
+
+class EonSLView : public QWidget
+{
+  Q_OBJECT
+  public:
+    EonSLView(QWidget *parent=0, EonSLDoc* doc=0);
+    ~EonSLView();
+  
+  protected slots:
+    void slotDocumentChanged();
+  
+};
+
+#endif