24 lines
451 B
C++
24 lines
451 B
C++
/*
|
||
* IMEssageHandler.h
|
||
*
|
||
* Created on: 18 нояб. 2016 г.
|
||
* Author: Gorbunov_DV
|
||
*/
|
||
|
||
#ifndef SOURCE_SYSTEM_IMESSAGEHANDLER_H_
|
||
#define SOURCE_SYSTEM_IMESSAGEHANDLER_H_
|
||
|
||
#include "../service/IMessageLink.hh"
|
||
|
||
namespace communication {
|
||
|
||
class IMessageHandler {
|
||
public:
|
||
virtual void handler( IMessageLink * link ) = 0;
|
||
virtual ~IMessageHandler() = default;
|
||
};
|
||
|
||
} /* namespace communication */
|
||
|
||
#endif /* SOURCE_SYSTEM_IMESSAGEHANDLER_H_ */
|