| 14 | const static char* EXAMPLE_PARAM_KEY = "/http/server/param_key"; |
| 15 | |
| 16 | struct HttpParam : public GParam { |
| 17 | CStatus setup() override { |
| 18 | val_ = 0; |
| 19 | return CStatus(); |
| 20 | } |
| 21 | |
| 22 | int val_ {0}; |
| 23 | int loop_ {0}; |
| 24 | }; |
| 25 | |
| 26 | |
| 27 | class ReqeustNode : public GNode { |
nothing calls this directly
no outgoing calls
no test coverage detected