IFileSystem.cpp

00001 /***************************************************************************
00002  *                                                                         *
00003  *   (c) Art Tevs, MPI Informatik Saarbruecken                             *
00004  *       mailto: <tevs@mpi-sb.mpg.de>                                      *
00005  *                                                                         *
00006  *   This program is free software; you can redistribute it and/or modify  *
00007  *   it under the terms of the GNU General Public License as published by  *
00008  *   the Free Software Foundation; either version 2 of the License, or     *
00009  *   (at your option) any later version.                                   *
00010  *                                                                         *
00011  ***************************************************************************/
00012 
00013 
00014 //----------------------------------------------------------------------------------
00015 // Includes
00016 //----------------------------------------------------------------------------------
00017 #include "IFileSystem.h"
00018 
00019 namespace nrEngine {
00020 
00021         //----------------------------------------------------------------------------------
00022         IFileSystem::IFileSystem()
00023         {
00024 
00025         }
00026 
00027         //----------------------------------------------------------------------------------
00028         IFileSystem::~IFileSystem()
00029         {
00030 
00031         }
00032                 
00033         //----------------------------------------------------------------------------------
00034         Result IFileSystem::set(uint32 param, const std::string& value)
00035         {
00036                 if (param >= mParameter.size()){
00037                         return VFS_NO_PARAMETER;
00038                 }
00039 
00040                 //mParameter.set(param, value);
00041                 
00042                 return OK;
00043         }
00044         
00045         //----------------------------------------------------------------------------------
00046         Result IFileSystem::set(const std::string& name, const std::string& value)
00047         {
00048                 //if (!mParameter.exists(name))
00049                 //      return VFS_NO_PARAMETER;
00050 
00051                 //mParameter[name] = value;
00052                 return OK;
00053         }
00054                 
00055 };
00056 

Generated on Wed Sep 12 23:19:42 2007 for nrEngine by  doxygen 1.5.1