summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2289_Regression/MyInterfaceImpl.h
blob: a7f76261396e2bb6a987d18b667eeaf13f7c1c9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// $Id$
//

#include "TestS.h"

class MyInterfaceImpl
  : public virtual POA_MyInterface
{
  public:
  MyInterfaceImpl (CORBA::ORB_ptr orb);
  
  static const char* my_string;

  // = The skeleton methods
  virtual CORBA::Boolean myMethod (const char* stringParam ACE_ENV_ARG_DECL_WITH_DEFAULTS)
    ACE_THROW_SPEC ((CORBA::SystemException));

private:
  CORBA::ORB_var orb_;
};