source: source/services/dht/DhtAnswerInterface.h@ 10653

Last change on this file since 10653 was 10653, checked in by Michael Tänzer, 12 years ago

Merge the ASIO branch back into trunk

File size: 369 bytes
Line 
1#ifndef DHT_ANSWER_INTERFACE_H_
2#define DHT_ANSWER_INTERFACE_H_
3
4namespace ariba_service {
5namespace dht {
6
7class DhtAnswerInterface
8{
9public:
10 virtual void handle_dht_answer(const std::string& key, const std::vector<std::string>& values) = 0;
11
12 virtual ~DhtAnswerInterface() {}
13};
14
15}} /* namespace ariba_service::dht */
16
17#endif /* DHT_ANSWER_INTERFACE_H_ */
Note: See TracBrowser for help on using the repository browser.