show/hide this revision's text 5 added 7 characters in body

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);
                        });
}
show/hide this revision's text 4 added 4 characters in body

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 str)
                        {
                           strtk::parse(str,p.x,p.y,p.z)strtk::parse(str,",",p.x,p.y,p.z); 
                           points.push_back(p);
                        });
}
show/hide this revision's text 3 added 82 characters in body

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 str)
                        {
                           strtk::parse(str,p.x,p.y,p.z); points.push_back(p);})strtk::parse(str,p.x,p.y,p.z); 
                           points.push_back(p);
                        });
}
show/hide this revision's text 2 added 64 characters in body
show/hide this revision's text 1 [made Community Wiki]