]> ruin.nu Git - eonsl.git/blobdiff - eonsl/eonsldoc.cpp
These files is for making the project
[eonsl.git] / eonsl / eonsldoc.cpp
diff --git a/eonsl/eonsldoc.cpp b/eonsl/eonsldoc.cpp
new file mode 100644 (file)
index 0000000..e60d526
--- /dev/null
@@ -0,0 +1,53 @@
+/***************************************************************************
+                          eonsldoc.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 "eonsldoc.h"
+
+EonSLDoc::EonSLDoc()
+{
+  modified = false;
+}
+
+EonSLDoc::~EonSLDoc()
+{
+}
+
+void EonSLDoc::newDoc()
+{
+}
+
+bool EonSLDoc::save()
+{
+  return true;
+}
+
+bool EonSLDoc::saveAs(const QString &filename)
+{
+  return true;
+}
+
+bool EonSLDoc::load(const QString &filename)
+{
+  emit documentChanged();
+  return true;
+}
+
+bool EonSLDoc::isModified() const
+{
+  return modified;
+}