blob: efbc90742f7a46dae2977224c94ce6907e6b75b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _IPBook_idl
#define _IPBook_idl
/**
* Interface for a very simple phone book
**/
interface IPBook {
/* Add an entry */
void addEntry( in string name, in string number);
/* Search for an entry */
string searchEntry( in string name);
/* Count all entries */
long count( );
};
#endif
|