00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
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 
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 
00042 
00043 
00044 
00045 
00046 
00047 
00048           cardinal = INT_MAX
00049         };
00050     };
00051 
00052   } 
00053 } 
00054 
00055 namespace vcsn {
00056   
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   } 
00085 } 
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