Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9a9f930b0482e7c09e2dac8c212538ce6a4529c3 (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
31
32
33
34
35
36
37
38
/*******************************************************************************
 * Copyright (c) 2013 protos software gmbh (http://www.protos.de).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * CONTRIBUTORS:
 * 		Juergen Haug (initial contribution)
 *
 *******************************************************************************/

#include "common/modelbase/IEventReceiver.h"
#include "common/modelbase/RTSystemProtocol.h"
#include <string>

namespace etRuntime {

const std::string RTSystemProtocol::RT_SYSTEM_PORT_NAME = "RTSystemPort";

RTSystemPort::RTSystemPort(IInterfaceItemOwner* actor, int localId) :
		RTSystemServicesProtocolPort(actor, RTSystemProtocol::RT_SYSTEM_PORT_NAME, localId) {
}

RTSystemConjPort::RTSystemConjPort(IInterfaceItemOwner* actor, int localId) :
		RTSystemServicesProtocolConjReplPort(actor, RTSystemProtocol::RT_SYSTEM_PORT_NAME, localId) {
}

InterfaceItemBase* RTSystemConjPort::createInterfaceItem(IInterfaceItemOwner* rcv, const std::string& name, int lid, int idx) {
	return new RTSystemConjSubPort(rcv, name, lid, idx);
}

RTSystemConjSubPort::RTSystemConjSubPort(IInterfaceItemOwner* actor, const std::string& name, int localId, int idx) :
		RTSystemServicesProtocolConjPort(actor, name, localId, idx) {
}

}  // namespace etRuntime

Back to the top