blob: fdbc2d736f7efd5739a040da0713c9730e76b327 [file] [log] [blame]
/*******************************************************************************
* 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 "common/debugging/DebuggingService.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_ */