Hello!
I have following problem:
Suppose we have C++ classes
class Class_A {
};
class Class_B {
public:
void method(A& a);
};
How to write correct implementation for something like:
interface A {
};
interface B {
void method(in A a);
};
?
Is there any pattern available for wrapping class hierarhy to CORBA?
Best regards,
Alik.