Skip to content

Commit

Permalink
feat(MarsRequest): parameters accessor
Browse files Browse the repository at this point in the history
  • Loading branch information
mcakircali committed Nov 11, 2024
1 parent 23434f9 commit d5ba240
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/metkit/mars/MarsRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ class MarsRequest {

void getParams(std::vector<std::string>&) const;
std::vector<std::string> params() const;


std::list<Parameter>& parameters() { return params_; }

const std::list<Parameter>& parameters() const { return params_; }

void verb(const std::string&);
Expand Down

0 comments on commit d5ba240

Please sign in to comment.