Get the value of a CASE-SENSITIVE key. Returns pointer to the value, NULL when the key does not exist.
| 105 | // Get the value of a CASE-SENSITIVE key. |
| 106 | // Returns pointer to the value, NULL when the key does not exist. |
| 107 | const std::string* GetQuery(const char* key) const |
| 108 | { return get_query_map().seek(key); } |
| 109 | const std::string* GetQuery(const std::string& key) const |
| 110 | { return get_query_map().seek(key); } |
| 111 |