================================= ================================= ================================= 출처 http://www.myevan.net/phpBB/viewtopic.php?t=2298 #pragma once #define null 0 template class MemoryPool { protected: vector vectorData; vector vectorFree; byte * buffer; unsigned int usedObject; unsigned int maxObject; static T* newInstance() { return (T*)::operator new(sizeof(T)); } static vo..