summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/Nestea.idl
blob: b101254bfe49125c8c17137f3dfabb5256a7083d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

// Just implements a nice little Nestea server
interface Nestea_Bookshelf
{
  void drink (in long cans);
  // Add a number of cans to the bookshelf.

  void crush (in long cans);
  // Crush some of those cans. 

  long bookshelf_size ();
  // How many cans are in the collection?

  string get_praise ();
  // What does the server think of your collection?

  oneway void shutdown();
};