aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support
diff options
context:
space:
mode:
authorPaul Gilbert2016-05-08 12:09:32 -0400
committerPaul Gilbert2016-07-10 16:38:51 -0400
commitc4375b134a57e3217d24e146592560f1ba9342d7 (patch)
treec988c8cefd4171796a611cbf13d38afffe199c90 /engines/titanic/support
parent74935b371fa94637f5592e402110c3b41cd0b3c4 (diff)
downloadscummvm-rg350-c4375b134a57e3217d24e146592560f1ba9342d7.tar.gz
scummvm-rg350-c4375b134a57e3217d24e146592560f1ba9342d7.tar.bz2
scummvm-rg350-c4375b134a57e3217d24e146592560f1ba9342d7.zip
TITANIC: Beginnings of STVocab class, CScriptHandler constructor
Diffstat (limited to 'engines/titanic/support')
-rw-r--r--engines/titanic/support/file_reader.cpp29
-rw-r--r--engines/titanic/support/file_reader.h38
2 files changed, 67 insertions, 0 deletions
diff --git a/engines/titanic/support/file_reader.cpp b/engines/titanic/support/file_reader.cpp
new file mode 100644
index 0000000000..c332d9995c
--- /dev/null
+++ b/engines/titanic/support/file_reader.cpp
@@ -0,0 +1,29 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * 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.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#include "titanic/support/file_reader.h"
+
+namespace Titanic {
+
+
+
+} // End of namespace Titanic
diff --git a/engines/titanic/support/file_reader.h b/engines/titanic/support/file_reader.h
new file mode 100644
index 0000000000..7e9eb1ac20
--- /dev/null
+++ b/engines/titanic/support/file_reader.h
@@ -0,0 +1,38 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * 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.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifndef TITANIC_FILE_READER_H
+#define TITANIC_FILE_READER_H
+
+#include "common/file.h"
+
+namespace Titanic {
+
+class CFileReader {
+public:
+ Common::File _file;
+public:
+};
+
+} // End of namespace Titanic
+
+#endif /* TITANIC_FILE_READER_H */