Vaucanson  1.4.1
generic_automaton_impl.thh
1 // -*- C++ -*-
2 // generic_automaton_impl.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 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/misc/usual_macros.hh>
25 # include GRAPH_IMPL_HEADER
26 
27 namespace vcsn
28 {
29  namespace VCSN_GRAPH_IMPL
30  {
31  VCSN_CONTEXT_NAMESPACE
32  {
33 
34  typedef vcsn::VCSN_GRAPH_IMPL::Graph<
35  labels_are_series,
36  series_set_elt_t::value_t::monoid_elt_value_t,
37  series_set_elt_t::value_t::semiring_elt_value_t,
38  series_set_elt_t::value_t,
39  series_set_elt_t::set_t::monoid_t::letter_t,
40  NoTag,
41  std::pair<double, double>
42  >
43  automaton_impl_t;
44 
45  typedef vcsn::VCSN_GRAPH_IMPL::Graph<
46  labels_are_letters,
47  series_set_elt_t::value_t::monoid_elt_value_t,
48  series_set_elt_t::value_t::semiring_elt_value_t,
49  series_set_elt_t::value_t,
50  series_set_elt_t::set_t::monoid_t::letter_t,
51  NoTag,
52  std::pair<double, double>
53  >
54  automaton_letter_impl_t;
55 
56  } // End of VCSN_CONTEXT_NAMESPACE.
57  } // End of VCSN_GRAPH_IMPL
58 } // End of namespace vcsn.