Skip to content
Snippets Groups Projects

F async execute

Merged Timm Fitschen requested to merge f-async-execute into dev
All threads resolved!
4 files
+ 15
18
Compare changes
  • Side-by-side
  • Inline

Files

+ 3
2
@@ -26,6 +26,7 @@
#include <cstdlib> // for getenv
#include <filesystem> // for path
#include <fstream> // for basic_istream<>::__ist...
#include <memory> // for shared_ptr
#include <string> // for string, operator+, cha...
namespace caosdb::utility {
@@ -110,7 +111,7 @@ public:
* By calling this constructor the ownership of the `wrapped` parameter is
* transferred to this object.
*/
JsonValue(void *wrapped) : wrapped(wrapped) {}
JsonValue(void *wrapped);
/**
* Destructor.
*
@@ -162,7 +163,7 @@ public:
* An object which represents a JSON value. The object's class is an
* implementation detail.
*/
void *wrapped;
std::shared_ptr<void> wrapped;
};
/**
Loading