Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9fbb2c1beeb3e75de3fe6efeb6ca2671bec9da32 (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
39
40
41
42
43
44
/*******************************************************************************
 * 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 v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * CONTRIBUTORS:
 * 		Peter Karlitschek (initial contribution)
 *
 *******************************************************************************/

#ifndef PORTBASE_H_
#define PORTBASE_H_

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

namespace etRuntime {

class PortBase: public InterfaceItemBase {

public:
	virtual ~PortBase() {}

protected:
	PortBase(IInterfaceItemOwner* owner, const std::string& name, int localId) :
			InterfaceItemBase(owner, name, localId, 0) {
	}

	PortBase(IInterfaceItemOwner* owner, const std::string& name, int localId, int idx) :
			InterfaceItemBase(owner, name, localId, idx) {
	}

private:

	PortBase(PortBase const&);
	PortBase & operator =(PortBase const&);

};

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

Back to the top