mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-08-03 13:35:35 +00:00
24 lines
295 B
C++
24 lines
295 B
C++
#ifndef __RETRO_CSIMPLEPOOL_HPP__
|
|
#define __RETRO_CSIMPLEPOOL_HPP__
|
|
|
|
#include "IFactory.hpp"
|
|
#include "CFactoryStore.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
namespace Common
|
|
{
|
|
|
|
class CSimplePool : public IObjectStore
|
|
{
|
|
public:
|
|
CSimplePool(IFactory&)
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __RETRO_CSIMPLEPOOL_HPP__
|