summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Security/Null_Cipher/Foo_i.h
blob: a3617e357de44e450aa4da205d5ea4f0249baf84 (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++ -*-

//=============================================================================
/**
 * @file Foo_i.h
 *
 * Implementation header for the Null_Cipher test.
 *
 * @author Ossama Othman <ossama@uci.edu>
 */
//=============================================================================

#ifndef NULL_CIPHER_FOO_I_H
#define NULL_CIPHER_FOO_I_H

#include "FooS.h"

class Foo_i : public virtual POA_Foo
{
public:
  /// Constructor.
  Foo_i (CORBA::ORB_ptr);

  virtual void shutdown ();

private:
  /// Reference to the ORB.
  CORBA::ORB_var orb_;
};

#endif  /* NULL_CIPHER_FOO_I_H */