| 164 | } |
| 165 | |
| 166 | std::string APICache::getRequestPath() const |
| 167 | { |
| 168 | std::string result; |
| 169 | if (base) |
| 170 | { |
| 171 | result = base->getRequestPath(); |
| 172 | result.push_back('/'); |
| 173 | } |
| 174 | result.append(path); |
| 175 | return result; |
| 176 | } |
| 177 | } // namespace hueplusplus |