blob: 18f80dbe60afcf2a8cb573289eeb824bd73816eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#pragma once
#include <Namespace.ice>
#include <NoNamespace.ice>
["cs:namespace:Ice.namespacemd"]
module Test
{
interface Initial
{
NoNamespace::C1 getNoNamespaceC2AsC1();
NoNamespace::C2 getNoNamespaceC2AsC2();
void throwNoNamespaceE2AsE1() throws NoNamespace::E1;
void throwNoNamespaceE2AsE2() throws NoNamespace::E2;
void throwNoNamespaceNotify() throws NoNamespace::notify;
WithNamespace::C1 getWithNamespaceC2AsC1();
WithNamespace::C2 getWithNamespaceC2AsC2();
void throwWithNamespaceE2AsE1() throws WithNamespace::E1;
void throwWithNamespaceE2AsE2() throws WithNamespace::E2;
void shutdown();
}
}
|