more complex types...

This commit is contained in:
Bernhard Amann 2011-10-26 17:46:43 -07:00
parent b245d4168a
commit 86730c13dd
8 changed files with 372 additions and 31 deletions

View file

@ -2,11 +2,14 @@
module Input;
export {
const default_reader = READER_ASCII &redef;
type ReaderDescription: record {
source: string;
idx: any;
val: any;
destination: any;
reader: Reader &default=default_reader;
};
}