aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/thread/DataObject.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2023-10-16 21:08:57 +0000
committersaturneric <[email protected]>2023-10-16 21:08:57 +0000
commitcc35ceff23accb44e25dfc47dae920f578836804 (patch)
tree02851ce7e8c2dac0d1492f58c9aed08aa2da2572 /src/core/thread/DataObject.cpp
parentrefactor: use c++17 features and piml tech to rewrite DataObject and Task (diff)
downloadGpgFrontend-cc35ceff23accb44e25dfc47dae920f578836804.tar.gz
GpgFrontend-cc35ceff23accb44e25dfc47dae920f578836804.zip
fix: solve compile and link issues
Diffstat (limited to 'src/core/thread/DataObject.cpp')
-rw-r--r--src/core/thread/DataObject.cpp2
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_); }