Changeset 872 for trunk/yat/utility/TypeInfo.h
- Timestamp:
- Sep 18, 2007, 2:21:14 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/TypeInfo.h
r865 r872 72 72 }; 73 73 74 /** 75 \brief Equality comparison 76 \return true iff underlying std::type_info are equal 77 */ 74 78 bool operator==(const TypeInfo&, const TypeInfo&); 79 80 /** 81 \brief Based on operator== 82 */ 75 83 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 */ 77 94 bool operator<=(const TypeInfo&, const TypeInfo&); 95 96 /** 97 \brief Based on operators == and < 98 */ 78 99 bool operator>(const TypeInfo&, const TypeInfo&); 100 101 /** 102 \brief Based on operators == and < 103 */ 79 104 bool operator>=(const TypeInfo&, const TypeInfo&); 80 105
Note: See TracChangeset
for help on using the changeset viewer.