19 lines
229 B
Plaintext
19 lines
229 B
Plaintext
|
module stdlib [system] {
|
||
|
header "stl_map.h"
|
||
|
header "vector"
|
||
|
}
|
||
|
|
||
|
module libCore {
|
||
|
header "SecondHeader.h"
|
||
|
use stdlib
|
||
|
export *
|
||
|
}
|
||
|
|
||
|
module libGdml {
|
||
|
header "FirstHeader.h"
|
||
|
use libCore
|
||
|
use stdlib
|
||
|
export *
|
||
|
}
|
||
|
|