metaforce/Runtime/Common/IAllocator.hpp

22 lines
278 B
C++
Raw Normal View History

2015-08-16 22:26:58 -07:00
#ifndef __RETRO_IALLOCATOR_HPP__
#define __RETRO_IALLOCATOR_HPP__
#include "COsContext.hpp"
namespace Retro
{
namespace Common
{
2015-08-16 22:26:58 -07:00
class IAllocator
{
public:
virtual bool Initialize(COsContext&)=0;
virtual void Shutdown()=0;
};
}
}
2015-08-16 22:26:58 -07:00
#endif // __RETRO_IALLOCATOR_HPP__