Vaucanson 1.4
|
00001 // dot_display.hxx: this file is part of the Vaucanson project. 00002 // 00003 // Vaucanson, a generic library for finite state machines. 00004 // 00005 // Copyright (C) 2004, 2005, 2007 The Vaucanson Group. 00006 // 00007 // This program is free software; you can redistribute it and/or 00008 // modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 00010 // of the License, or (at your option) any later version. 00011 // 00012 // The complete GNU General Public Licence Notice can be found as the 00013 // `COPYING' file in the root directory. 00014 // 00015 // The Vaucanson Group consists of people listed in the `AUTHORS' file. 00016 // 00017 #ifndef VCSN_TOOLS_DOT_DISPLAY_HXX 00018 # define VCSN_TOOLS_DOT_DISPLAY_HXX 00019 00028 # include <vaucanson/tools/dot_display.hh> 00029 00030 # include <vaucanson/automata/concept/automata_base.hh> 00031 # include <vaucanson/tools/dot_dump.hh> 00032 00033 # include <ostream> 00034 # include <string> 00035 # include <vaucanson/tools/out_display.hh> 00036 00037 namespace vcsn { 00038 00039 namespace tools { 00040 00041 template <class S, class T> 00042 bool 00043 dot_display(const Element<S, T>& a, 00044 const std::string& name, 00045 const bool bg, 00046 const char *const argv[]) 00047 { 00048 return out_display(a.structure(), a.value(), 00049 a, name, bg, argv, 00050 dot_dump<Element<S, T> >); 00051 } 00052 00053 } // End of namespace tools. 00054 00055 } // End of namespace vcsn. 00056 00057 #endif // ! VCSN_TOOLS_DOT_DISPLAY_HXX