summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/PSS/Server.idl
blob: b9edd30e3025ec1613f4d95b5e604444e69f9702 (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
/* -*- C++ -*- */
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/orbsvcs/examples/PSS
//
// = FILENAME
//    Server.idl
//
// = AUTHOR
//     Priyanka Gontla <gontla_p@ociweb.com>
//
// ============================================================================

#ifndef TAO_SERVER_IDL
#define TAO_SERVER_IDL

#pragma prefix "omg.org"

module Simple_Server
{
  interface Server
  {
    string get_status ();
  };

};

#endif /* TAO_SERVER_IDL */