blob: e71a4c7541386d0191e5c0f39a8fea1a50116490 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#pragma once
module Test
{
exception BadEncodingException {}
interface MyObject
{
["cpp:type:wstring"] string widen(string msg) throws BadEncodingException;
string narrow(["cpp:type:wstring"] string wmsg);
void shutdown();
}
}
|