Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef SCIP2_RESPONSE_ABSTRACT_H
00018 #define SCIP2_RESPONSE_ABSTRACT_H
00019
00020 #include <boost/asio.hpp>
00021
00022 #include <string>
00023
00024 namespace scip2
00025 {
00026 class Response
00027 {
00028 public:
00029 using Ptr = std::shared_ptr<Response>;
00030 virtual std::string getCommandCode() const = 0;
00031 virtual void operator()(
00032 const boost::posix_time::ptime &,
00033 const std::string &,
00034 const std::string &,
00035 std::istream &) = 0;
00036 };
00037
00038 }
00039
00040 #endif // SCIP2_RESPONSE_ABSTRACT_H