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

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

#ifndef TAO_SIMPLE_NAMING_IDL
#define TAO_SIMPLE_NAMING_IDL

#pragma prefix "omg.org"

module Simple_Naming
{
  typedef string Name;
  typedef string Str_Obj;

  interface Naming_Context
  {
    long bind (in Name n, in Str_Obj obj);

    Str_Obj find (in Name n);
  };

};

#endif /* TAO_SIMPLE_NAMING_IDL */