Match and link CFactoryStore in a really dumb way

Former-commit-id: ad21202340
This commit is contained in:
2023-01-14 02:00:14 -08:00
parent 0d2f5f6527
commit cf5562d509
5 changed files with 14 additions and 4 deletions

View File

@@ -10,10 +10,11 @@ template < typename T >
class TObjOwnerParam : public IVParamObj {
public:
~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:
T* x4_data;
T x4_data;
};
class CVParamTransfer {