Vaucanson  1.4.1
transducer_maker.thh
1 // -*- C++ -*-
2 // transducer_maker.thh: this file is part of the Vaucanson project.
3 //
4 // Vaucanson, a generic library for finite state machines.
5 //
6 // Copyright (C) 2004, 2005, 2006, 2008 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 /* FIXME: document why there is such includes */
27 
28 namespace vcsn
29 {
30  namespace VCSN_GRAPH_IMPL
31  {
32  VCSN_CONTEXT_NAMESPACE
33  {
34 
35  template <class T>
36  automaton_t make_automaton(const T& input_alphabet,
37  const T& output_alphabet);
38 
39  template <class InputIterator>
40  automaton_t make_automaton(InputIterator input_alphabet_begin,
41  InputIterator input_alphabet_end,
42  InputIterator output_alphabet_begin,
43  InputIterator output_alphabet_end);
44 
45  template <typename TransStruct,
46  typename TransImpl,
47  typename ArgStruct,
48  typename ArgImpl>
49  output_series_set_elt_t
50  evaluation(const Element<TransStruct, TransImpl>& t,
51  const Element<ArgStruct, ArgImpl>& input);
52 
53  } // End of VCSN_CONTEXT_NAMESPACE.
54  } // End of VCSN_GRAPH_IMPL
55 } // End of namespace vcsn.
56 
57 #include <vaucanson/contexts/transducer_maker.thxx>
58