diff options
Diffstat (limited to 'src/core/thread/DataObject.cpp')
-rw-r--r-- | src/core/thread/DataObject.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/thread/DataObject.cpp b/src/core/thread/DataObject.cpp index b21db7cb..55a5f452 100644 --- a/src/core/thread/DataObject.cpp +++ b/src/core/thread/DataObject.cpp @@ -73,6 +73,8 @@ std::any DataObject::GetParameter(size_t index) const { return p_->GetParameter(index); } +void DataObject::AppendObject(std::any obj) { return p_->AppendObject(obj); } + size_t DataObject::GetObjectSize() const { return p_->GetObjectSize(); } void DataObject::Swap(DataObject& other) noexcept { std::swap(p_, other.p_); } |