Home | Namespaces | Hierarchy | Alphabetical List | Class list | Files | Namespace Members | Class members | File members
E:/Programming/MyProject/K_Game_hg/GameEngine/include/render/MeshDataFactory.h
Go to the documentation of this file.
00001 // Copyright 2006-2011 by Kat'Oun
00002 
00003 #ifndef _MESH_DATA_FACTORY_H_
00004 #define _MESH_DATA_FACTORY_H_
00005 
00006 #include <EngineConfig.h>
00007 #include <resource/ResourceFactory.h>
00008 
00009 namespace resource
00010 {
00011 class Resource;
00012 class Serializer;
00013 }
00014 
00015 namespace render
00016 {
00017 
00018 class ENGINE_PUBLIC_EXPORT MeshDataFactory: public resource::ResourceFactory
00019 {
00020 public:
00021 
00022         resource::Resource* createResource(const std::string& filename, resource::Serializer* serializer);
00023 
00024         void destroyResource(resource::Resource* resource);
00025 };
00026 
00027 } // end namespace render
00028 
00029 #endif

The KG Game Engine
The KG Game Engine Documentation © 2006-2011 by Kat'Oun. Generated on Sat Jul 2 2011 00:50:04 by Doxygen (1.7.4)