]> ruin.nu Git - eonsl.git/blob - eonsl/eonsldoc.cpp
These files is for making the project
[eonsl.git] / eonsl / eonsldoc.cpp
1 /***************************************************************************
2                           eonsldoc.cpp  -  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 #include "eonsldoc.h"
20
21 EonSLDoc::EonSLDoc()
22 {
23   modified = false;
24 }
25
26 EonSLDoc::~EonSLDoc()
27 {
28 }
29
30 void EonSLDoc::newDoc()
31 {
32 }
33
34 bool EonSLDoc::save()
35 {
36   return true;
37 }
38
39 bool EonSLDoc::saveAs(const QString &filename)
40 {
41   return true;
42 }
43
44 bool EonSLDoc::load(const QString &filename)
45 {
46   emit documentChanged();
47   return true;
48 }
49
50 bool EonSLDoc::isModified() const
51 {
52   return modified;
53 }