|
The ice include path...
hi,
i have question regarding including the ice files.
suppose i have a ice file... a.ice
module X {
module Y {
interface Z {
void doSomething(int x, int y);
};
};
};
and if i have a ice file b.ice in the same directory:
#include "a.ice"
module D {
module E {
interface F implements ::X::Y::Z {
void doSomething(int x, int y);
};
};
};
this does not work.
how do i include a sice file into another sice file
|