Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 96b510c62fcee45fb4ab412b4a1bcf2018ff0b52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * PortBase.h
 *
 *  Created on: 06.06.2012
 *      Author: karlitsc
 */

#ifndef PORTBASE_H_
#define PORTBASE_H_

#include "common/modelbase/InterfaceItemBase.h"
#include "common/messaging/Address.h"
#include <string>

namespace etRuntime {
class IEventReceiver;

class PortBase : public InterfaceItemBase{
public:
	PortBase (IEventReceiver& actor, IRTObject* parent, std::string name, int localId, int idx, Address address, Address peerAddress)
		: InterfaceItemBase(actor, parent, name, localId, idx, address, peerAddress){};
	virtual ~PortBase();

private:
	PortBase();

};

} /* namespace etRuntime */
#endif /* PORTBASE_H_ */

Back to the top