mirror of
https://github.com/boostorg/graph.git
synced 2025-05-10 07:23:58 +00:00
19 lines
596 B
C++
19 lines
596 B
C++
// Copyright 2005 The Trustees of Indiana University.
|
|
|
|
// Use, modification and distribution is subject to the Boost Software
|
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
// Authors: Douglas Gregor
|
|
// Andrew Lumsdaine
|
|
#ifndef BOOST_GRAPH_PYTHON_DIGRAPH_HPP
|
|
#define BOOST_GRAPH_PYTHON_DIGRAPH_HPP
|
|
|
|
#include "basic_graph.hpp"
|
|
|
|
namespace boost { namespace graph { namespace python {
|
|
typedef basic_graph<bidirectionalS> Digraph;
|
|
} } } // end namespace boost::graph::python
|
|
|
|
#endif // BOOST_GRAPH_PYTHON_DIGRAPH_HPP
|