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 utility {
00066
00070 template <typename U, typename V>
00071 std::ostream& operator<<(std::ostream& o, std::pair<U, V> p);
00072
00074 template <typename U, typename V, class Traits, class Allocator>
00075 std::ostream& operator<<(std::ostream& o,
00076 std::basic_string<std::pair<U, V>, Traits, Allocator> s);
00077
00079 template <typename U, typename V>
00080 std::istream& operator>>(std::istream& i, std::pair<U, V>& p);
00081
00082 }
00083
00084 # ifndef VCSN_USE_INTERFACE_ONLY
00085 # include <vaucanson/algebra/implementation/letter/couple_letter.hxx>
00086 # endif // VCSN_USE_INTERFACE_ONLY
00087
00088 #endif // ! VCSN_ALGEBRA_IMPLEMENTATION_LETTER_COUPLE_LETTER_HH