1
2
3#if !defined(__BAA_COMPILATION) && defined(__ORBIT_IDL__)
4%{
5#pragma include_defs foo.h
6%}
7#pragma inhibit push
8#endif
9
10#include <foo.idl>
11
12#if !defined(__BAA_COMPILATION) && defined(__ORBIT_IDL__)
13#pragma inhibit pop
14#endif
15
16module Foo {
17  interface Child : Parent {
18    void bar ();
19  };
20};
21