2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-29 07:32:21 +00:00
Files
graph/src/python/digraph.cpp
Douglas Gregor 7c446ad0d4 Copyrightify and licensify
[SVN r27552]
2005-03-04 14:53:56 +00:00

19 lines
527 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
#include "digraph.hpp"
#include "basic_graph.cpp"
namespace boost { namespace graph { namespace python {
void export_Digraph()
{
export_basic_graph<bidirectionalS>("Digraph");
}
} } } // end namespace boost::graph::python