Vaucanson  1.4.1
transducer.thh
1 // -*- C++ -*-
2 // transducer.thh: this file is part of the Vaucanson project.
3 //
4 // Vaucanson, a generic library for finite state machines.
5 //
6 // Copyright (C) 2005, 2006, 2008, 2010 The Vaucanson Group.
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License
10 // as published by the Free Software Foundation; either version 2
11 // of the License, or (at your option) any later version.
12 //
13 // The complete GNU General Public Licence Notice can be found as the
14 // `COPYING' file in the root directory.
15 //
16 // The Vaucanson Group consists of people listed in the `AUTHORS' file.
17 //
18 
19 /*
20  * CPP guard should not be inserted here as
21  * VCSN_CONTEXT_NAMESPACE could be changed.
22  */
23 
24 #include <vaucanson/automata/concept/transducer.hh>
25 
26 namespace vcsn
27 {
28  namespace VCSN_GRAPH_IMPL
29  {
30  VCSN_CONTEXT_NAMESPACE
31  {
32 
34  typedef Element<automata_set_t, automaton_impl_t> automaton_t;
35  typedef vcsn::generalized_traits<automaton_t>::automaton_t gen_automaton_t;
36  typedef input_projection_helper<automata_set_t, automaton_impl_t>::ret
37  input_projection_automaton_t;
38  typedef output_projection_helper<automata_set_t, automaton_impl_t>::ret
39  output_projection_automaton_t;
40 
41  AUTOMATON_TYPES_EXACT(automaton_t);
42 
43  } // End of VCSN_CONTEXT_NAMESPACE.
44  } // End of VCSN_GRAPH_IMPL
45 } // End of namespace vcsn.