comline/core/examples/imports/hole.cls

15 lines
368 B
OpenEdge ABL
Raw Permalink Normal View History

2023-06-15 07:10:20 -05:00
namespace examples.imports.ant
// Imports whole schemas by name from a underlying namespace
import examples::imports::{ant food}
// Or imports exactly the components you want like structures, enums and errors
import examples::imports::ant {Ant, Mood, CantCarryError}
import examples::imports::food {Food, State, NotEdibleError}
settings {
}
protocol Gathering {
}