mirror of https://github.com/PrimeDecomp/prime.git
Match and link CFactoryStore in a really dumb way
Former-commit-id: ad21202340
This commit is contained in:
parent
0d2f5f6527
commit
cf5562d509
|
@ -610,7 +610,7 @@ LIBS = [
|
||||||
["Kyoto/Streams/CZipInputStream", True],
|
["Kyoto/Streams/CZipInputStream", True],
|
||||||
["Kyoto/Streams/CZipOutputStream", True],
|
["Kyoto/Streams/CZipOutputStream", True],
|
||||||
["Kyoto/Streams/CZipSupport", True],
|
["Kyoto/Streams/CZipSupport", True],
|
||||||
"Kyoto/CFactoryStore",
|
["Kyoto/CFactoryStore", True],
|
||||||
["Kyoto/CObjectReference", True],
|
["Kyoto/CObjectReference", True],
|
||||||
"Kyoto/CSimplePool",
|
"Kyoto/CSimplePool",
|
||||||
["Kyoto/CToken", True],
|
["Kyoto/CToken", True],
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
class IFactory;
|
class IFactory;
|
||||||
class CSimplePool : public IObjectStore {
|
class CSimplePool : public IObjectStore {
|
||||||
public:
|
public:
|
||||||
CSimplePool(IFactory& factory);
|
CSimplePool(IFactory& factory) : x18_factory(factory) {}
|
||||||
~CSimplePool();
|
~CSimplePool();
|
||||||
|
|
||||||
virtual CToken GetObj(const SObjectTag& tag, CVParamTransfer xfer);
|
virtual CToken GetObj(const SObjectTag& tag, CVParamTransfer xfer);
|
||||||
|
|
|
@ -10,10 +10,11 @@ template < typename T >
|
||||||
class TObjOwnerParam : public IVParamObj {
|
class TObjOwnerParam : public IVParamObj {
|
||||||
public:
|
public:
|
||||||
~TObjOwnerParam() {}
|
~TObjOwnerParam() {}
|
||||||
T* GetData() const { return static_cast<T*>(x4_data); }
|
TObjOwnerParam(T data) : x4_data(data) {}
|
||||||
|
T GetData() const { return static_cast<T>(x4_data); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
T* x4_data;
|
T x4_data;
|
||||||
};
|
};
|
||||||
|
|
||||||
class CVParamTransfer {
|
class CVParamTransfer {
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
class IFactory;
|
class IFactory;
|
||||||
class IObjectStore {
|
class IObjectStore {
|
||||||
public:
|
public:
|
||||||
|
IObjectStore() {}
|
||||||
virtual CToken GetObj(const SObjectTag& tag, CVParamTransfer xfer) = 0;
|
virtual CToken GetObj(const SObjectTag& tag, CVParamTransfer xfer) = 0;
|
||||||
virtual CToken GetObj(const SObjectTag& tag) = 0;
|
virtual CToken GetObj(const SObjectTag& tag) = 0;
|
||||||
virtual CToken GetObj(const char* name) = 0;
|
virtual CToken GetObj(const char* name) = 0;
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
#include "Kyoto/CSimplePool.hpp"
|
||||||
|
#include "Kyoto/CResFactory.hpp"
|
||||||
|
|
||||||
|
TObjOwnerParam<IObjectStore*> DumbTest() {
|
||||||
|
CResFactory tmp;
|
||||||
|
CSimplePool pool(tmp);
|
||||||
|
return TObjOwnerParam<IObjectStore*>(&pool);
|
||||||
|
}
|
Loading…
Reference in New Issue