mirror of https://github.com/PrimeDecomp/prime.git
31 lines
675 B
C++
31 lines
675 B
C++
#ifndef _CFACTORYMGR_HPP
|
|
#define _CFACTORYMGR_HPP
|
|
|
|
#include "types.h"
|
|
|
|
#include "Kyoto/IObjectStore.hpp"
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "Kyoto/TToken.hpp"
|
|
|
|
class CFactoryMgr {
|
|
public:
|
|
private:
|
|
u8 pad[0x38];
|
|
};
|
|
|
|
class CFactoryFnReturn {
|
|
public:
|
|
template < typename T >
|
|
CFactoryFnReturn(T* ptr);
|
|
// TODO this forces inlining, were they really manually specialized?
|
|
// : obj(TToken< T >::GetIObjObjectFor(ptr).release()) {}
|
|
|
|
private:
|
|
rstl::auto_ptr< CObjOwnerDerivedFromIObjUntyped > obj;
|
|
};
|
|
|
|
CFactoryFnReturn FStringTableFactory(const SObjectTag& tag, CInputStream& in,
|
|
const CVParamTransfer& xfer);
|
|
|
|
#endif
|