Vcsn  2.0
Be Rational
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
star.cc
Go to the documentation of this file.
2 #include <vcsn/algos/star.hh>
3 #include <vcsn/dyn/algos.hh>
4 #include <vcsn/dyn/automaton.hh>
5 
6 namespace vcsn
7 {
8  namespace dyn
9  {
10  REGISTER_DEFINE(star);
11 
12  automaton
13  star(const automaton& aut)
14  {
15  return detail::star_registry().call(aut);
16  }
17  }
18 }
std::shared_ptr< detail::automaton_base > automaton
Definition: automaton.hh:71
automaton star(const automaton &aut)
Star of a standard automaton.
Definition: star.cc:13