Sync with 5.1.0
[deliverable/titan.core.git] / regression_test / ttcn2json / PIPEasp_PortType.ttcn
CommitLineData
970ed795
EL
1/******************************************************************************
2 * Copyright (c) 2000-2014 Ericsson Telecom AB
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
7 ******************************************************************************/
8//
9// File: PIPEasp_PortType.ttcn
10// Reference: Based on SCS PIPE Testport
11// Rev: <RnXnn>
12// Prodnr: CNL 113 334
13// Updated: 2008-06-03
14// Contact: http://ttcn.ericsson.se
15
16module PIPEasp_PortType
17{
18
19 import from PIPEasp_Types all;
20// *************************************************************************
21// * PIPE port type definitions *
22// *************************************************************************
23
24 // system PIPE port type
25 type port PIPEasp_PT message
26 {
27 out ASP_PExecute,
28 ASP_PExecuteBinary,
29 ASP_PExecuteBackground,
30 ASP_PStdin,
31 ASP_PStdinBinary,
32 ASP_PKill,
33 ASP_PLineMode,
34 ASP_PEndOfInput;
35
36 in ASP_PResult,
37 ASP_PResultBinary,
38 ASP_PStdout,
39 ASP_PStderr,
40 ASP_PStdoutBinary,
41 ASP_PStderrBinary,
42 ASP_PExit,
43 ASP_PError;
44 }
45
46}//eof module
This page took 0.024452 seconds and 5 git commands to generate.