couple_letter.hh

00001 // couple_letter.hh: this file is part of the Vaucanson project.
00002 //
00003 // Vaucanson, a generic library for finite state machines.
00004 //
00005 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 The Vaucanson Group.
00006 //
00007 // This program is free software; you can redistribute it and/or
00008 // modify it under the terms of the GNU General Public License
00009 // as published by the Free Software Foundation; either version 2
00010 // of the License, or (at your option) any later version.
00011 //
00012 // The complete GNU General Public Licence Notice can be found as the
00013 // `COPYING' file in the root directory.
00014 //
00015 // The Vaucanson Group consists of people listed in the `AUTHORS' file.
00016 //
00017 #ifndef VCSN_ALGEBRA_IMPLEMENTATION_LETTER_COUPLE_LETTER_HH
00018 # define VCSN_ALGEBRA_IMPLEMENTATION_LETTER_COUPLE_LETTER_HH
00019 
00020 # include <climits>
00021 # include <string>
00022 # include <iostream>
00023 
00024 # include <vaucanson/algebra/concept/letter.hh>
00025 # include <vaucanson/algebra/concept/freemonoid_base.hh>
00026 
00027 // Here are functions to manipulate pairs.
00028 
00029 namespace vcsn
00030 {
00031 
00032   namespace algebra
00033   {
00034 
00035     template <typename U, typename V>
00036     struct letter_traits< std::pair<U, V> >
00037     {
00038         enum
00039         {
00040           /*
00041            * Theoretically   cardinal   should   be   the   product   of
00042            * letter_traits<U>::cardinal and letter_traits<V>::cardinal.
00043            * But to  avoid overflows and for
00044            * practical reasons, it is better to consider it infinite.
00045            *
00046            * FIXME: Maybe doing this is not a good idea?
00047            */
00048           cardinal = INT_MAX
00049         };
00050     };
00051 
00052   } // End of namespace algebra.
00053 } // End of namespace vcsn.
00054 
00055 namespace vcsn {
00056   // Specialization for pairs.
00057   template <typename S, typename U, typename V>
00058   bool op_parse (const algebra::FreeMonoidBase<S>& set,
00059                  std::basic_string< std::pair<U, V> >& v,
00060                  const std::string& s,
00061                  typename std::string::const_iterator& i,
00062                  const std::list<char>& escaped);
00063 
00064 
00065   namespace misc {
00066 
00071     template <typename U, typename V>
00072     std::ostream& operator<< (std::ostream& o, std::pair<U, V> p);
00073 
00075     template <typename U, typename V, class Traits, class Allocator>
00076     std::ostream&
00077     operator<< (std::ostream& o,
00078                 std::basic_string<std::pair<U, V>, Traits, Allocator> s);
00079 
00081     template <typename U, typename V>
00082     std::istream& operator>> (std::istream& i, std::pair<U, V>& p);
00083 
00084   } // misc
00085 } // vcsn
00086 
00087 # if !defined VCSN_USE_INTERFACE_ONLY || defined VCSN_USE_LIB
00088 #  include <vaucanson/algebra/implementation/letter/couple_letter.hxx>
00089 # endif // VCSN_USE_INTERFACE_ONLY
00090 
00091 #endif // ! VCSN_ALGEBRA_IMPLEMENTATION_LETTER_COUPLE_LETTER_HH

Generated on Wed Jun 13 17:00:21 2007 for Vaucanson by  doxygen 1.5.1