blob: 7cd8e46d9dd627432498813db7a933d47627418b [file]
/*******************************************************************************
* Copyright (c) 2012 Draeger Medical GmbH (http://www.draeger.com).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* CONTRIBUTORS:
* Peter Karlitschek (initial contribution)
*
*******************************************************************************/
#ifndef ABSTRACTMESSAGERECEIVER_H_
#define ABSTRACTMESSAGERECEIVER_H_
#include "common/messaging/Address.h"
#include "common/messaging/IMessageReceiver.h"
#include "common/messaging/RTObject.h"
namespace etRuntime {
class AbstractMessageReceiver: public RTObject, public virtual IMessageReceiver {
public:
virtual ~AbstractMessageReceiver() {}
virtual const Address& getAddress() const {
return m_address;
}
protected:
AbstractMessageReceiver(IRTObject* parent, const String& name) :
RTObject(parent, name),
m_address(Address::EMPTY) {
}
AbstractMessageReceiver(IRTObject* parent, const Address& address, const String& name) :
RTObject(parent, name),
m_address(address) {
}
void setAddress(const Address& address) {
m_address = address;
}
virtual String toString() const {
return getName() + " " + m_address.toID();
}
private:
Address m_address;
AbstractMessageReceiver(AbstractMessageReceiver const&);
AbstractMessageReceiver& operator=(AbstractMessageReceiver const&);
};
}
#endif /* ABSTRACTMESSAGERECEIVER_H_ */