https://svn.lrde.epita.fr/svn/oln/trunk/static
Index: ChangeLog
from Roland Levillain <roland(a)lrde.epita.fr>
* stc/vtypes.hh (stc_equip_namespace_with_vtypes): Swap the
definitions of single_vtype and ext_vtype (for aesthetic purpose
only).
vtypes.hh | 40 ++++++++++++++++++++--------------------
1 file changed, 20 insertions(+), 20 deletions(-)
Index: stc/vtypes.hh
--- stc/vtypes.hh (revision 553)
+++ stc/vtypes.hh (working copy)
@@ -314,74 +314,74 @@
/* \} */ \
\
\
- /* Extended vtype. */ \
+ /* Single vtype. */ \
/* \{ */ \
\
- /** \brief An extended virtual type associated to \a from_type. */ \
+ /** \brief A single virtual type associated to \a from_type. */ \
/** */ \
/** Specialize this class for the desired \a from_type. */ \
template <typename category, typename from_type, typename typedef_type> \
- struct ext_vtype_in_category \
+ struct single_vtype_in_category \
{ \
}; \
\
- /** \brief An extended virtual type associated to \a from_type. */ \
+ /** \brief A single virtual type associated to \a from_type. */ \
/** Version for types without category. */ \
/** */ \
/** Specialize this class for the desired \a from_type. */ \
template <typename from_type, typename typedef_type> \
- struct ext_vtype \
+ struct single_vtype \
{ \
}; \
\
- /** Specialization of ext_vtype for types without category. */ \
+ /** Specialization of single_vtype for types without category. */ \
template <typename from_type, typename typedef_type> \
- struct ext_vtype_in_category<void, from_type, typedef_type> \
- : public ext_vtype<from_type, typedef_type> \
+ struct single_vtype_in_category<void, from_type, typedef_type> \
+ : public single_vtype<from_type, typedef_type> \
{ \
}; \
\
- /** End of the recursive construction of any ext_vtype<> */ \
+ /** End of the recursive construction of any single_vtype<> */ \
/** hierarchy. */ \
template <typename category, typename typedef_type> \
- struct ext_vtype_in_category<category, mlc::none, typedef_type> \
+ struct single_vtype_in_category<category, mlc::none, typedef_type> \
{ \
}; \
\
/* \} */ \
\
\
- /* Single vtype. */ \
+ /* Extended vtype. */ \
/* \{ */ \
\
- /** \brief A single virtual type associated to \a from_type. */ \
+ /** \brief An extended virtual type associated to \a from_type. */ \
/** */ \
/** Specialize this class for the desired \a from_type. */ \
template <typename category, typename from_type, typename typedef_type> \
- struct single_vtype_in_category \
+ struct ext_vtype_in_category \
{ \
}; \
\
- /** \brief A single virtual type associated to \a from_type. */ \
+ /** \brief An extended virtual type associated to \a from_type. */ \
/** Version for types without category. */ \
/** */ \
/** Specialize this class for the desired \a from_type. */ \
template <typename from_type, typename typedef_type> \
- struct single_vtype \
+ struct ext_vtype \
{ \
}; \
\
- /** Specialization of single_vtype for types without category. */ \
+ /** Specialization of ext_vtype for types without category. */ \
template <typename from_type, typename typedef_type> \
- struct single_vtype_in_category<void, from_type, typedef_type> \
- : public single_vtype<from_type, typedef_type> \
+ struct ext_vtype_in_category<void, from_type, typedef_type> \
+ : public ext_vtype<from_type, typedef_type> \
{ \
}; \
\
- /** End of the recursive construction of any single_vtype<> */ \
+ /** End of the recursive construction of any ext_vtype<> */ \
/** hierarchy. */ \
template <typename category, typename typedef_type> \
- struct single_vtype_in_category<category, mlc::none, typedef_type> \
+ struct ext_vtype_in_category<category, mlc::none, typedef_type> \
{ \
}; \
\