SDK  2.1.4 [async]
CloudBackend Software Development Kit - SDK API for C++
DownloadSuccess.h
1 #ifndef CBE__delegate__DownloadSuccess_h__
2 #define CBE__delegate__DownloadSuccess_h__
3 
4 #include "cbe/Object.h"
5 
6 #include <string>
7 
8 namespace cbe {
9  namespace delegate {
10 
17 public:
18  cbe::Object object{cbe::DefaultCtor{}};
19  std::string path{};
20 
23  DownloadSuccess(cbe::Object&& object,
24  std::string path);
25 
31  explicit operator bool() const;
32 }; // class DownloadSuccess
33 
34  } // namespace delegate
35 } // namespace cbe
36 
37 #endif // !CBE__delegate__DownloadSuccess_h__
Holder of a set of data, can represent a table row.
Definition: Object.h:64
Convenience type that bundles all parameters passed to method cbe::delegate::DownloadDelegate::onDown...
Definition: DownloadSuccess.h:16
Root namespace for the CloudBackend SDK API.
Definition: Account.h:22
DefaultCtor
Default constructor marker.
Definition: Types.h:204