Skip to content
Snippets Groups Projects

F multi retrieve

Merged Timm Fitschen requested to merge f-multi-retrieve into dev
All threads resolved!
Files
3
@@ -24,6 +24,8 @@
#include <string>
namespace caosdb {
/**
* StatusCodes represent the status of this client, it's connections,
* configuration and so on.
@@ -33,9 +35,6 @@
* GENERIC_TRANSACTION_ERROR indicates that *there are* errors in a
* transaction).
*/
namespace caosdb {
enum StatusCode {
INITIAL = -2,
EXECUTING = -1,
@@ -48,6 +47,8 @@ enum StatusCode {
CONFIGURATION_ERROR = 23,
UNKNOWN_CONNECTION_ERROR = 24,
TRANSACTION_STATUS_ERROR = 25,
TRANSACTION_TYPE_ERROR = 26,
UNSUPPORTED_FEATURE = 27,
};
auto get_status_description(int code) -> const std::string &;
Loading