1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/stdapis/boost/graph/simple_point.hpp Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -0,0 +1,23 @@
1.4 +//=======================================================================
1.5 +// Copyright 2005 Trustees of Indiana University
1.6 +// Authors: Andrew Lumsdaine, Douglas Gregor
1.7 +//
1.8 +// Distributed under the Boost Software License, Version 1.0. (See
1.9 +// accompanying file LICENSE_1_0.txt or copy at
1.10 +// http://www.boost.org/LICENSE_1_0.txt)
1.11 +//=======================================================================
1.12 +#ifndef BOOST_GRAPH_SIMPLE_POINT_HPP
1.13 +#define BOOST_GRAPH_SIMPLE_POINT_HPP
1.14 +
1.15 +namespace boost {
1.16 +
1.17 +template<typename T>
1.18 +struct simple_point
1.19 +{
1.20 + T x;
1.21 + T y;
1.22 +};
1.23 +
1.24 +} // end namespace boost
1.25 +
1.26 +#endif // BOOST_GRAPH_SIMPLE_POINT_HPP