8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a56ed9 commit d1116c1Copy full SHA for d1116c1
arangod/Aql/ClusterNodes.h
@@ -36,6 +36,10 @@
36
#include "VocBase/vocbase.h"
37
38
namespace arangodb {
39
+namespace velocypack {
40
+class Builder;
41
+class Slice;
42
+}
43
namespace aql {
44
class ExecutionBlock;
45
class ExecutionPlan;
@@ -176,8 +180,8 @@ class ScatterNode : public ExecutionNode {
176
180
void setScatterType(ScatterType targetType) { _type = targetType; }
177
181
178
182
protected:
179
- void writeClientsToVelocyPack(VPackBuilder& builder) const;
- bool readClientsFromVelocyPack(VPackSlice base);
183
+ void writeClientsToVelocyPack(velocypack::Builder& builder) const;
184
+ bool readClientsFromVelocyPack(velocypack::Slice base);
185
186
void copyClients(std::vector<std::string> const& other) {
187
TRI_ASSERT(_clients.empty());
0 commit comments