From 2b6d1599f8102d2e85d459c4b9b1b52cc93c8dae Mon Sep 17 00:00:00 2001 From: luca83 Date: Tue, 18 May 2010 14:41:48 +0000 Subject: [PATCH] Patch level : 10.0 patch ??? Files correlati : libreria Ricompilazione Demo : [ ] Commento : Aggiunti due metodi inline che settano il carattere separatore e permettono di recuperarlo nei CSV recordset git-svn-id: svn://10.65.10.50/trunk@20466 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- include/textset.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/textset.h b/include/textset.h index 5879ce6b0..21cd94850 100755 --- a/include/textset.h +++ b/include/textset.h @@ -68,6 +68,8 @@ class TCSV_recordset : public TText_recordset TArray _trc; protected: + char separator() const { return _separator; } + void set_separator(const char s) { CHECK(s != 0, "Invalid separator"); _separator = s; } virtual TQuery_type parse_query(const char* query, TFilename& table); public: