JODA  0.13.1 (59b41972)
JSON On-Demand Analysis
Delete_Actions.h
Go to the documentation of this file.
1 //
2 // Created by Nico on 08/05/2019.
3 //
4 
5 #ifndef JODA_DELETE_ACTIONS_H
6 #define JODA_DELETE_ACTIONS_H
7 #include "../grammar/Grammar.h"
8 #include "../states/States.h"
9 
11 template <>
13  template <typename Input>
14  static void apply(const Input &in, deleteState &state) {
15  state.deleteVar = in.string();
16  }
17 };
18 } // namespace joda::queryparsing::grammar
19 
20 #endif // JODA_DELETE_ACTIONS_H
static void apply(const Input &in, deleteState &state)
Definition: Delete_Actions.h:14
Definition: Delete_State.h:9
std::string deleteVar
Definition: Delete_State.h:18