diff options
Diffstat (limited to 'src/core/model/DataObject.h')
-rw-r--r-- | src/core/model/DataObject.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/model/DataObject.h b/src/core/model/DataObject.h index a2b19413..efd75c16 100644 --- a/src/core/model/DataObject.h +++ b/src/core/model/DataObject.h @@ -95,4 +95,8 @@ auto ExtractParams(const std::shared_ptr<DataObject>& d_o, int index) -> T { void swap(DataObject& a, DataObject& b) noexcept; +using DataObjectPtr = std::shared_ptr<DataObject>; ///< +using OperaRunnable = std::function<GFError(DataObjectPtr)>; +using OperationCallback = std::function<void(GFError, DataObjectPtr)>; + } // namespace GpgFrontend
\ No newline at end of file |