|
||||
File indexing completed on 2025-01-18 09:37:36
0001 //======================================================================= 0002 // Copyright 2005 Trustees of Indiana University 0003 // Authors: Andrew Lumsdaine, Douglas Gregor 0004 // 0005 // Distributed under the Boost Software License, Version 1.0. (See 0006 // accompanying file LICENSE_1_0.txt or copy at 0007 // http://www.boost.org/LICENSE_1_0.txt) 0008 //======================================================================= 0009 #ifndef BOOST_GRAPH_SIMPLE_POINT_HPP 0010 #define BOOST_GRAPH_SIMPLE_POINT_HPP 0011 0012 namespace boost 0013 { 0014 0015 template < typename T > struct simple_point 0016 { 0017 T x; 0018 T y; 0019 }; 0020 0021 } // end namespace boost 0022 0023 #endif // BOOST_GRAPH_SIMPLE_POINT_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |