factory_play_box_graphics.h
Go to the documentation of this file.00001
00015 #ifndef _FACTORIES__FACTORY_PLAYBOX_GRAPHICS_H_
00016 #define _FACTORIES__FACTORY_PLAYBOX_GRAPHICS_H_
00017
00018 #include <string>
00019
00020 #include "../templates/factory.h"
00021 #include "../templates/singleton.h"
00022 #include "../play_box_graphics.h"
00023
00027 namespace Factories
00028 {
00032 typedef Templates::Singleton<
00033 Templates::Factory<
00034
00035 PlayBoxGraphics,
00036
00037 std::string
00038 >
00039 > FactoryPlayBoxGraphics;
00040
00041 }
00042
00043 #endif