Ignore:
Timestamp:
Sep 18, 2007, 2:21:14 AM (16 years ago)
Author:
Peter
Message:

Some docs for TypeInfo?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/utility/TypeInfo.h

    r865 r872  
    7272  };
    7373
     74  /**
     75     \brief Equality comparison
     76     \return true iff underlying std::type_info are equal
     77   */ 
    7478  bool operator==(const TypeInfo&, const TypeInfo&);
     79
     80  /**
     81     \brief Based on operator==
     82   */ 
    7583  bool operator!=(const TypeInfo&, const TypeInfo&);
    76   bool operator<(const TypeInfo&, const TypeInfo&);
     84
     85  /**
     86     \brief Ordering relation
     87     \return true iff underlying lhs.get()<rhs.get()
     88   */ 
     89  bool operator<(const TypeInfo& lhs, const TypeInfo& rhs);
     90
     91  /**
     92     \brief Based on operators == and <
     93   */ 
    7794  bool operator<=(const TypeInfo&, const TypeInfo&);
     95
     96  /**
     97     \brief Based on operators == and <
     98   */ 
    7899  bool operator>(const TypeInfo&, const TypeInfo&);
     100
     101  /**
     102     \brief Based on operators == and <
     103   */ 
    79104  bool operator>=(const TypeInfo&, const TypeInfo&);
    80105
Note: See TracChangeset for help on using the changeset viewer.