OSDN Git Service

[denncoCreator] Implementing save functionality. The work is still in progress.
[dennco/denncoCreator.git] / Source / dccontent.h
1 //  Copyright (c) 2012 Dennco Project
2 //
3 // This program is free software: you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation, either version 3 of the License, or
6 // (at your option) any later version.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 //
17 //  Created by tkawata on Sep-30, 2012.
18 //
19 #ifndef DCVCONTENT_H
20 #define DCVCONTENT_H
21
22 class DCContainer;
23 class DCCreator;
24
25 #include <QString>
26
27 class DCContent
28 {
29     bool parseSettingFile(const char *contentRoot);
30     bool parseContainerFile(const char *containerRoot);
31
32     DCCreator   *d_creator;
33     bool        d_valid;
34     DCContainer *d_container;
35
36 public:
37     DCContent(DCCreator *creator, std::string contentPath);
38     virtual ~DCContent();
39
40     bool            isValid() const { return d_valid; }
41
42     DCContainer*    getContainer() const { return d_container; }
43     DCCreator*      getCreator() const { return d_creator; }
44
45     bool            saveAll(const QString& containerRoot);
46
47 };
48
49 #endif // DCVCONTENT_H