X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=eonsl%2Feonsldoc.cpp;fp=eonsl%2Feonsldoc.cpp;h=e60d526d17cdf6c2e99a40b60b25942bbf86f144;hb=0e5f7ad99205e3fe1eec3ab18343a1ea1ab5b186;hp=0000000000000000000000000000000000000000;hpb=2ef157a840252b9468734989542724fc66b3a43e;p=eonsl.git diff --git a/eonsl/eonsldoc.cpp b/eonsl/eonsldoc.cpp new file mode 100644 index 0000000..e60d526 --- /dev/null +++ b/eonsl/eonsldoc.cpp @@ -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; +}