change constructors

This commit is contained in:
Bernhard Amann 2012-12-03 13:57:15 -08:00
parent 9b2265877d
commit 22f2fc009c
4 changed files with 20 additions and 5 deletions

View file

@ -15,7 +15,13 @@ class AsciiInputOutput {
// Constructor that defines all separators, etc.
// Use if you need either ValToODesc or EntryToVal.
AsciiInputOutput(threading::MsgThread*, const string & separator, const string & set_separator,
const string & empty_field, const string & unset_field);
const string & unset_field, const string & empty_field);
// Constructor that defines all separators, etc, besides empty_field, which is not needed for many
// non-ascii-based io sources.
// Use if you need either ValToODesc or EntryToVal.
AsciiInputOutput(threading::MsgThread*, const string & separator, const string & set_separator,
const string & unset_field);
~AsciiInputOutput();