#include "common/common.h"
#include <iostream>
Go to the source code of this file.
Classes | |
struct | col_data_t |
| |
typedef std::vector< col_data_t > | vec_col_t |
vector of values provided to callback | |
typedef void(* | csv_callback_fn )(IN void *context, IN const vec_col_t &data) |
callback for parseCsvStream() | |
void | parseCsvStream (IN std::istream &in, IN const VecString &columns, IN csv_callback_fn callback, IN void *context) |
parse a stream of lines containing comma-separated values. |