From cc8d69d19737a434ddd4a9a7fd15059ed59a2795 Mon Sep 17 00:00:00 2001 From: john30 Date: Sat, 7 Nov 2015 09:50:15 +0100 Subject: [PATCH] added constant --- src/lib/ebus/filereader.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/ebus/filereader.h b/src/lib/ebus/filereader.h index 357ee670..1c3be6e6 100644 --- a/src/lib/ebus/filereader.h +++ b/src/lib/ebus/filereader.h @@ -39,6 +39,9 @@ using namespace std; /** the separator character used to quote text having the @a FIELD_SEPARATOR in it. */ #define TEXT_SEPARATOR '"' +/** the separator character as string used to quote text having the @a FIELD_SEPARATOR in it. */ +#define TEXT_SEPARATOR_STR "\"" + extern void printErrorPos(ostream& out, vector::iterator begin, const vector::iterator end, vector::iterator pos, string filename, size_t lineNo, result_t result); extern unsigned int parseInt(const char* str, int base, const unsigned int minValue, const unsigned int maxValue, result_t& result, unsigned int* length);