ScummVM API documentation
section7.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef M4_RIDDLE_ROOMS_SECTION7_H
23 #define M4_RIDDLE_ROOMS_SECTION7_H
24 
25 #include "m4/riddle/rooms/section.h"
26 #include "m4/riddle/rooms/section7/room701.h"
27 #include "m4/riddle/rooms/section7/room702.h"
28 #include "m4/riddle/rooms/section7/room703.h"
29 #include "m4/riddle/rooms/section7/room704.h"
30 #include "m4/riddle/rooms/section7/room705.h"
31 #include "m4/riddle/rooms/section7/room706.h"
32 #include "m4/riddle/rooms/section7/room707.h"
33 #include "m4/riddle/rooms/section7/room709.h"
34 #include "m4/riddle/rooms/section7/room710.h"
35 #include "m4/riddle/rooms/section7/room711.h"
36 
37 namespace M4 {
38 namespace Riddle {
39 namespace Rooms {
40 
41 class Section7 : public Section {
42 private:
43  Room701 _room701;
44  Room702 _room702;
45  Room703 _room703;
46  Room704 _room704;
47  Room705 _room705;
48  Room706 _room706;
49  Room707 _room707;
50  Room709 _room709;
51  Room710 _room710;
52  Room711 _room711;
53 
54 public:
55  Section7();
56  virtual ~Section7() {}
57 
58  void daemon() override;
59 };
60 
61 } // namespace Rooms
62 } // namespace Riddle
63 } // namespace M4
64 
65 #endif
Definition: room707.h:31
Definition: room706.h:31
Definition: room711.h:31
Definition: room705.h:31
Definition: database.h:28
Definition: room710.h:31
Definition: room709.h:31
Definition: room702.h:31
Definition: room704.h:31
Definition: section.h:31
Definition: section7.h:41
Definition: room701.h:31
Definition: room703.h:31