X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2Fstlplus%2Fstrings%2Fprint_digraph.tpp;fp=src%2Fstlplus%2Fstrings%2Fprint_digraph.tpp;h=0000000000000000000000000000000000000000;hp=af2818fca05367e8b9ecf274c5e870492f1a89eb;hb=574af38ed616d1adfa5e6ce35f67cda1f707f89d;hpb=6c9943707d4f33035830eba0587a61a34eaecbc2 diff --git a/src/stlplus/strings/print_digraph.tpp b/src/stlplus/strings/print_digraph.tpp deleted file mode 100644 index af2818f..0000000 --- a/src/stlplus/strings/print_digraph.tpp +++ /dev/null @@ -1,31 +0,0 @@ -//////////////////////////////////////////////////////////////////////////////// - -// Author: Andy Rushton -// Copyright: (c) Southampton University 1999-2004 -// (c) Andy Rushton 2004-2009 -// License: BSD License, see ../docs/license.html - -//////////////////////////////////////////////////////////////////////////////// -#include "print_sequence.hpp" - -namespace stlplus -{ - - //////////////////////////////////////////////////////////////////////////////// - - template - void print_digraph(std::ostream& device, const digraph& values, - NS node_print_fn, - AS arc_print_fn, - const std::string& separator) - { - device << "nodes:"; - device << separator; - print_sequence(device, values.begin(), values.end(), node_print_fn, separator); - device << "arcs:"; - device << separator; - print_sequence(device, values.arc_begin(), values.arc_end(), arc_print_fn, separator); - } - -} // end namespace stlplus -