|
Last change
on this file since 10653 was 10653, checked in by Michael Tänzer, 13 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 |
|
|---|
| 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.