]> ruin.nu Git - hbs.git/blob - bs/bsdoc.cpp
57811c70417188fd0d0914b170d815546fd7c429
[hbs.git] / bs / bsdoc.cpp
1 /***************************************************************************
2                           bcdoc.cpp  -  description
3                              -------------------
4     begin                : Sun May 27 22:13:58 CEST 2001
5     copyright            : (C) 2001 by Michael Andreen
6     email                : whale@linux.nu
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #include "bcdoc.h"
19
20 BcDoc::BcDoc()
21 {
22   modified = false;
23 }
24
25 BcDoc::~BcDoc()
26 {
27 }
28
29 void BcDoc::newDoc()
30 {
31 }
32
33 bool BcDoc::save()
34 {
35   return true;
36 }
37
38 bool BcDoc::saveAs(const QString &filename)
39 {
40   return true;
41 }
42
43 bool BcDoc::load(const QString &filename)
44 {
45   emit documentChanged();
46   return true;
47 }
48
49 bool BcDoc::isModified() const
50 {
51   return modified;
52 }