#pragma once #include "utils.hpp" #include "Hash.hpp" #include "DataView.hpp" namespace odhtdb { struct StagedCreateObject { DISABLE_COPY(StagedCreateObject) DataView encryptedBody; std::shared_ptr requestKey; StagedCreateObject(DataView &_encryptedBody, const std::shared_ptr &_requestKey) : encryptedBody(_encryptedBody), requestKey(_requestKey) { } }; }