mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Work toward RPC send.
This commit is contained in:
@@ -467,10 +467,10 @@ public:
|
||||
virtual Json::Value getJson(int) const;
|
||||
|
||||
SerializedTypeID getSType() const { return STI_PATH; }
|
||||
int getPathLength() const { return value.size(); }
|
||||
int getPathLength() const { return value.size(); }
|
||||
const STPathElement& getElement(int off) const { return value[off]; }
|
||||
STPathElement& peekElement(int off) { return value[off]; }
|
||||
void emptyPath() { value.empty(); }
|
||||
bool emptyPath() const { return value.empty(); }
|
||||
void addPathElement(const STPathElement& e) { value.push_back(e); }
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user