set & entry separator configuration (with the restriction that they have to be exactly one character long)

This commit is contained in:
Bernhard Amann 2011-11-16 22:47:28 -08:00
parent ab68d84007
commit 4fef1e3f8c
4 changed files with 78 additions and 5 deletions

View file

@ -0,0 +1,19 @@
##! Interface for the ascii input reader.
module InputAscii;
export {
## Separator between fields.
## Please note that the separator has to be exactly one character long
const separator = "\t" &redef;
## Separator between set elements.
## Please note that the separator has to be exactly one character long
const set_separator = "," &redef;
## String to use for empty fields.
const empty_field = "-" &redef;
## String to use for an unset &optional field.
const unset_field = "-" &redef;
}