Vcsn  2.0
Be Rational
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
tikz.cc
Go to the documentation of this file.
1 #include <vcsn/dyn/algos.hh>
2 #include <vcsn/dyn/automaton.hh>
3 #include <vcsn/algos/tikz.hh>
5 
6 namespace vcsn
7 {
8  namespace dyn
9  {
10  /*-------.
11  | tikz. |
12  `-------*/
13 
14  REGISTER_DEFINE(tikz);
15 
16  std::ostream&
17  tikz(const automaton& aut, std::ostream& out)
18  {
19  detail::tikz_registry().call(aut, out);
20  return out;
21  }
22  }
23 }
std::shared_ptr< detail::automaton_base > automaton
Definition: automaton.hh:71
std::ostream & tikz(const automaton &aut, std::ostream &out)
Output aut in LaTeX's TikZ format.
Definition: tikz.cc:17