metaforce/Runtime/Common/CSimplePool.hpp

24 lines
295 B
C++
Raw Normal View History

2015-08-17 20:33:58 +00:00
#ifndef __RETRO_CSIMPLEPOOL_HPP__
#define __RETRO_CSIMPLEPOOL_HPP__
2015-08-18 05:54:43 +00:00
#include "IFactory.hpp"
#include "CFactoryStore.hpp"
namespace Retro
{
namespace Common
{
2015-08-18 05:54:43 +00:00
class CSimplePool : public IObjectStore
2015-08-17 20:33:58 +00:00
{
2015-08-18 05:54:43 +00:00
public:
CSimplePool(IFactory&)
{
}
2015-08-17 20:33:58 +00:00
};
}
}
2015-08-17 20:33:58 +00:00
#endif // __RETRO_CSIMPLEPOOL_HPP__