blob: 1dec14ed0bc96332d4aff082756707e310216bfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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);
private:
CORBA::ORB_var orb_;
};
|