Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-02-08 15:27:59 +0000
committerStijn Buys <ingar@osirion.org>2009-02-08 15:27:59 +0000
commit2386bda56b33de68370fa8acc76e39ddddd836c6 (patch)
tree6de102324d33a70625c90c5839c17dcdc26ac47d /src/model/map.h
parentc8a6ff1c0693ca1bd9025dcbdd7c22e3d193f8dd (diff)
changed inifile and map to use filesystem::IFileStream
Diffstat (limited to 'src/model/map.h')
-rw-r--r--src/model/map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model/map.h b/src/model/map.h
index b46be7c..e38b9ec 100644
--- a/src/model/map.h
+++ b/src/model/map.h
@@ -7,13 +7,13 @@
#ifndef __INCLUDED_MODEL_MAP_H__
#define __INCLUDED_MODEL_MAP_H__
-#include <fstream>
#include <string>
#include <vector>
#include "model/model.h"
#include "model/plane.h"
#include "model/primitives.h"
+#include "filesystem/filestream.h"
namespace model
{
@@ -167,7 +167,7 @@ private:
unsigned int parse_level;
unsigned int line_number;
- std::ifstream mapfile_ifs;
+ filesystem::IFileStream mapfile_ifs;
std::string mapfile_name;
math::Vector3f class_maxbbox;