blob: 8d4975d1377b2c14762a602c8fe95d57438dbfd7 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// **********************************************************************
//
// Copyright (c) 2003-2004 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef PHONE_BOOK_ICE
#define PHONE_BOOK_ICE
#include <Ice/Identity.ice>
module Demo
{
exception DatabaseException
{
string message;
};
class Contact
{
nonmutating string getName();
void setName(string name) throws DatabaseException;
nonmutating string getAddress();
void setAddress(string address);
nonmutating string getPhone();
void setPhone(string phone);
void destroy() throws DatabaseException;
string name;
string address;
string phone;
};
sequence<Contact*> Contacts;
interface PhoneBook
{
Contact* createContact() throws DatabaseException;
nonmutating Contacts findContacts(string name) throws DatabaseException;
void setEvictorSize(int size) throws DatabaseException;
nonmutating void shutdown();
};
};
#endif
|