24 lines
446 B
C++
24 lines
446 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_ */
|