// csv.hh // (C) 2008 Philip Endecott // This file is part of libpbe. See http://svn.chezphil.org/libpbe/ // This file is distributed under the terms of the Boost Software License v1.0. // Please see http://www.boost.org/LICENSE_1_0.txt or the accompanying file BOOST_LICENSE. #ifndef pbe_csv_hh #define pbe_csv_hh #include #include namespace pbe { extern void parse_csv_line(std::string l, std::vector& v); }; #endif