diff options
author | saturneric <[email protected]> | 2023-10-16 21:08:57 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-10-16 21:08:57 +0000 |
commit | cc35ceff23accb44e25dfc47dae920f578836804 (patch) | |
tree | 02851ce7e8c2dac0d1492f58c9aed08aa2da2572 /src/core/thread/DataObject.cpp | |
parent | refactor: use c++17 features and piml tech to rewrite DataObject and Task (diff) | |
download | GpgFrontend-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.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_); } |