Using the Strtk library and lambdas you can do the following:
{
std::deque<point> points;
point p;
strtk::for_each_line("data.txt",
[](std::string ](const std::string& str)
{
strtk::parse(str,",",p.x,p.y,p.z);
points.push_back(p);
});
}
