Hi,
Let's say I have a good reason to have the two following .ice file
Code://file A.ice module TopLevel { module LevelA { module Foo { interface FooA { void Bar(); }; }; }; };My question is: what should I do (instead of writing "LevelA.") in front of FooA to extends from FooA?Code://file B.ice #include "A.ice" module TopLevel { module LevelB { module Foo { interface FooB extends ?LevelA.FooA { void BarBar(); }; }; }; };
Is it only possible ot extends from interface defined inside the very same module?
Thanks in advance!

Reply With Quote