Last sync 2016.04.01
[deliverable/titan.core.git] / regression_test / ttcn2json / PIPEasp_PortType.ttcn
CommitLineData
970ed795 1/******************************************************************************
d44e3c4f 2 * Copyright (c) 2000-2016 Ericsson Telecom AB
970ed795
EL
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
d44e3c4f 7 *
8 * Contributors:
9 * Balasko, Jeno
10 * Baranyi, Botond
11 *
970ed795
EL
12 ******************************************************************************/
13//
14// File: PIPEasp_PortType.ttcn
15// Reference: Based on SCS PIPE Testport
16// Rev: <RnXnn>
17// Prodnr: CNL 113 334
18// Updated: 2008-06-03
19// Contact: http://ttcn.ericsson.se
20
21module PIPEasp_PortType
22{
23
24 import from PIPEasp_Types all;
25// *************************************************************************
26// * PIPE port type definitions *
27// *************************************************************************
28
29 // system PIPE port type
30 type port PIPEasp_PT message
31 {
32 out ASP_PExecute,
33 ASP_PExecuteBinary,
34 ASP_PExecuteBackground,
35 ASP_PStdin,
36 ASP_PStdinBinary,
37 ASP_PKill,
38 ASP_PLineMode,
39 ASP_PEndOfInput;
40
41 in ASP_PResult,
42 ASP_PResultBinary,
43 ASP_PStdout,
44 ASP_PStderr,
45 ASP_PStdoutBinary,
46 ASP_PStderrBinary,
47 ASP_PExit,
48 ASP_PError;
49 }
50
51}//eof module
This page took 0.027389 seconds and 5 git commands to generate.