Transport.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef PROTOCOLS__GENERICS__TRANSPORT_H
00024 #define PROTOCOLS__GENERICS__TRANSPORT_H
00025
00026 #include "Imports.h"
00027 #include "Connection.h"
00028 #include "Buffer.h"
00029
00030 namespace Protocols {
00031 namespace Generics {
00032
00033 class TransportStatus;
00034
00036
00079 class Transport : public Connection, public Buffer
00080 {
00081 CALITKO_MOCKABLE
00082
00083 public:
00084 virtual ~Transport() {};
00085
00086 virtual void setTransportStatus (TransportStatus *) = 0;
00087 };
00088
00089 }
00090 }
00091
00092 #endif // PROTOCOLS__GENERICS__TRANSPORT_H