vincentlaucsb / csv-parser

A high-performance, fully-featured CSV parser and serializer for modern C++.
MIT License
901 stars 150 forks source link

Passing an input stream to the constructor of CSVReader #117

Closed fakuivan closed 4 years ago

fakuivan commented 4 years ago

Seems kinda odd for the CSVWriter to accept output streams but for the CSVReader to only accept file names. Is there any function for reading from input streams that maybe I'm not aware of?

vincentlaucsb commented 4 years ago

@fakuivan From the online documentation at http://vincela.com/csv/ (I just recently fixed the documentation link--you didn't miss anything) there are methods for reading in-memory strings.