ben-strasser / fast-cpp-csv-parser

fast-cpp-csv-parser
BSD 3-Clause "New" or "Revised" License
2.15k stars 440 forks source link

Work with stream #4

Closed pendenaor closed 8 years ago

pendenaor commented 9 years ago

Hello,

My current application need to parse a CSV stream produced by a WebService. Presently, i have to write it down to disk to use your parser, maybe it would be useful to create an interface for (string)stream ?

ben-strasser commented 8 years ago

The newest version has support for arbitrary istreams. You can added other data sources (such as a socket) by deriving a class from ByteSourceBase and implementing that functionality.