/****************************************************************************** * Copyright (c) 2000-2016 Ericsson Telecom AB * 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: * Balasko, Jeno * ******************************************************************************/ module Titan_LogTestDefinitions { type port PCOType message { inout charstring; } with { extension "internal"} type port PCO_PT message { inout charstring; } type component MTCType { timer t; port PCOType internal_port; port PCO_PT external_port; } type component MTCType2 { timer t; port PCOType internal_port; } type component MTCTypeExternal { timer t; port PCO_PT external_port; } }