00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef VCSN_AUTOMATA_IMPLEMENTATION_GENERALIZED_HXX
00018 # define VCSN_AUTOMATA_IMPLEMENTATION_GENERALIZED_HXX
00019
00020 # include <vaucanson/automata/implementation/generalized.hh>
00021
00022 namespace vcsn {
00023
00024 template <class Auto_>
00025 typename generalized_traits<Auto_>::automaton_t
00026 generalized(const Auto_& from)
00027 {
00028 typename generalized_traits<Auto_>::automaton_t to(from.structure());
00029 auto_copy(to, from);
00030 return to;
00031 }
00032
00033
00034 }
00035
00036 #endif // ! VCSN_AUTOMATA_IMPLEMENTATION_GENERALIZED_HXX