blob: 1bfc07fd997d59da3df53e2734613fe1f932358a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// **********************************************************************
//
// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
//
// **********************************************************************
module Test
{
interface Foo
{
int bar(string, long l, out bool, out short s);
int bar2(string s, long, out bool b, out short);
}
}
|