2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-03 01:55:52 +00:00
metaforce/Runtime/CSimplePool.hpp
Jack Andersen 3f1025abb3 link fix
2015-08-24 21:04:50 -10:00

30 lines
660 B
C++

#ifndef __RETRO_CSIMPLEPOOL_HPP__
#define __RETRO_CSIMPLEPOOL_HPP__
#include "IObjectStore.hpp"
namespace Retro
{
class IFactory;
class CSimplePool : public IObjectStore
{
public:
CSimplePool(IFactory&)
{
}
IObj& GetObj(const SObjectTag&, const CVParamTransfer&) {}
IObj& GetObj(const SObjectTag&) {}
IObj& GetObj(char const*) {}
IObj& GetObj(char const*, const CVParamTransfer&) {}
void HasObject(const SObjectTag&) const {}
void ObjectIsLive(const SObjectTag&) const {}
IFactory& GetFactory() const {}
void Flush() {}
void ObjectUnreferenced(const SObjectTag&) {}
};
}
#endif // __RETRO_CSIMPLEPOOL_HPP__