dashing/parse_numbers.hh

11 lines
220 B
C++

#ifndef DASHING_PARSE_NUMBERS_H
#define DASHING_PARSE_NUMBERS_H
#include <vector>
#include <string>
#include <sstream>
#include "dashing_F.hh"
namespace dashing
{
std::vector<F> parse_numbers(std::string line);
}
#endif