The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#ifndef BOOST_GRAPH_SIMPLE_POINT_HPP
#define BOOST_GRAPH_SIMPLE_POINT_HPP

namespace boost {

template<typename T>
struct simple_point
{
  T x;
  T y;
};

} // end namespace boost

#endif // BOOST_GRAPH_SIMPLE_POINT_HPP