extras/csv: Set sensible defaults options for CSVParser
authorJerome St-Louis <jerome@ecere.com>
Thu, 2 Jun 2011 20:40:30 +0000 (16:40 -0400)
committerJerome St-Louis <jerome@ecere.com>
Thu, 2 Jun 2011 20:40:30 +0000 (16:40 -0400)
extras/CSVParser.ec

index bd05d8a..af3f05c 100644 (file)
@@ -36,7 +36,7 @@ public struct CSVParserState
 public class CSVParser : public FileHandler
 {
 public:
-   CSVParserParameters options;
+   CSVParserParameters options { ',', '\"', 0, false };
    CSVParserState info;
 
    void PrintMessage(typed_object object, ...)