source:
source/services/ariba_dht/DhtAnswerInterface.h
Last change on this file was 10700, checked in by , 13 years ago | |
---|---|
File size: 369 bytes |
Rev | Line | |
---|---|---|
1 | #ifndef DHT_ANSWER_INTERFACE_H_ | |
2 | #define DHT_ANSWER_INTERFACE_H_ | |
3 | ||
4 | namespace ariba_service { | |
5 | namespace dht { | |
6 | ||
7 | class DhtAnswerInterface | |
8 | { | |
9 | public: | |
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.