1*8eb8d936SJohn Thompson// module.map
2*8eb8d936SJohn Thompson
3*8eb8d936SJohn Thompsonmodule Level1A {
4*8eb8d936SJohn Thompson  header "Level1A.h"
5*8eb8d936SJohn Thompson  export *
6*8eb8d936SJohn Thompson}
7*8eb8d936SJohn Thompsonmodule Level1B {
8*8eb8d936SJohn Thompson  header "Level1B.h"
9*8eb8d936SJohn Thompson  export *
10*8eb8d936SJohn Thompson  module Level2B {
11*8eb8d936SJohn Thompson    header "Level2B.h"
12*8eb8d936SJohn Thompson    export *
13*8eb8d936SJohn Thompson  }
14*8eb8d936SJohn Thompson}
15*8eb8d936SJohn Thompsonmodule Level2A {
16*8eb8d936SJohn Thompson  header "Level2A.h"
17*8eb8d936SJohn Thompson  export *
18*8eb8d936SJohn Thompson}
19*8eb8d936SJohn Thompsonmodule UmbrellaDirectoryModule {
20*8eb8d936SJohn Thompson  umbrella "UmbrellaSub"
21*8eb8d936SJohn Thompson}
22*8eb8d936SJohn Thompsonmodule UmbrellaHeaderModule {
23*8eb8d936SJohn Thompson  umbrella header "UmbrellaFile.h"
24*8eb8d936SJohn Thompson}
25*8eb8d936SJohn Thompson/*
26*8eb8d936SJohn Thompsonmodule NoHeader {
27*8eb8d936SJohn Thompson  header "NoHeader.h"
28*8eb8d936SJohn Thompson  export *
29*8eb8d936SJohn Thompson}
30*8eb8d936SJohn Thompson*/
31