dcrud  0.0.0
Distributed data and services
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends
ICallback.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "Arguments.hpp"
4 
5 namespace dcrud {
6 
7  class ICallback {
8  public:
9 
10  virtual ~ ICallback(){}
11 
12  virtual void callback(
13  const std::string & intrfc,
14  const std::string & operation,
15  const Arguments & results ) = 0;
16  };
17 }
virtual ~ICallback()
Definition: ICallback.hpp:10
virtual void callback(const std::string &intrfc, const std::string &operation, const Arguments &results)=0