]> ruin.nu Git - eonsl.git/blobdiff - eonsl/eonslview.cpp
These files is for making the project
[eonsl.git] / eonsl / eonslview.cpp
diff --git a/eonsl/eonslview.cpp b/eonsl/eonslview.cpp
new file mode 100644 (file)
index 0000000..416fa44
--- /dev/null
@@ -0,0 +1,35 @@
+/***************************************************************************
+                          eonslview.cpp  -  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.                                   *
+ *                                                                         *
+ ***************************************************************************/
+
+#include "eonslview.h"
+
+EonSLView::EonSLView(QWidget *parent, EonSLDoc *doc) : QWidget(parent)
+{
+  /** connect doc with the view*/
+  connect(doc, SIGNAL(documentChanged()), this, SLOT(slotDocumentChanged()));
+}
+
+EonSLView::~EonSLView()
+{
+}
+
+void EonSLView::slotDocumentChanged()
+{
+  //TODO update the view
+
+}