| Home | Namespaces | Hierarchy | Alphabetical List | Class list | Files | Namespace Members | Class members | File members |
00001 // Copyright (C) 2002-2008 Nikolaus Gebhardt 00002 // This file is part of the "irrKlang" library. 00003 // For conditions of distribution and use, see copyright notice in irrKlang.h 00004 00005 #ifndef __I_IRRKLANG_FILE_FACTORY_H_INCLUDED__ 00006 #define __I_IRRKLANG_FILE_FACTORY_H_INCLUDED__ 00007 00008 #include "ik_IRefCounted.h" 00009 00010 namespace irrklang 00011 { 00012 class IFileReader; 00013 00015 00020 class IFileFactory : public virtual IRefCounted 00021 { 00022 public: 00023 00024 virtual ~IFileFactory() {}; 00025 00027 00035 virtual IFileReader* createFileReader(const ik_c8* filename) = 0; 00036 }; 00037 00038 } // end namespace irrklang 00039 00040 #endif 00041
| The irrKlang
Engine Documentation © 2003-2007 by Nikolaus Gebhardt. Generated
on Sun Oct 12 13:44:49 2008 by Doxygen
(1.5.4) |