1 framework module DependsOnModule { 2 umbrella header "DependsOnModule.h" 3 header "other.h" 4 module * { 5 export * 6 } 7 explicit module CXX { 8 requires cplusplus 9 header "cxx_other.h" 10 } 11 12 explicit framework module SubFramework { 13 umbrella header "SubFramework.h" 14 15 module * { 16 export * 17 } 18 } 19 } 20