cpp_launchpad/compile/allocate/factory.h

7 lines
134 B
C++

#ifndef ALLOCATE_FACTORY
#define ALLOCATE_FACTORY
template <class I, class O> class factory_t {
virtual O* create(I*) = 0;
};
#endif