summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/Nestea.idl
blob: 150c1bd52f30813246a08f647dff191894d18fe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// $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?
};