コード例 #1
0
 bool operator()(const std::type_info& x, const std::type_info& y) { return x.before(y) != 0; }
コード例 #2
0
ファイル: type_id.hpp プロジェクト: hia3/CliPP
inline bool type_detail::operator<(type_detail const& rhs) const
{
    return base_type_->before(*rhs.base_type_)!=0;
}
コード例 #3
0
	inline bool TypeInfo::before(const TypeInfo& rhs) const
	{
		assert(pInfo_);
		// type_info::before return type is int in some VC libraries 
		return pInfo_->before(*rhs.pInfo_) != 0;
	}
コード例 #4
0
ファイル: TypeInfo.hpp プロジェクト: Patrick-Louden/2.2
inline bool TypeInfo::before(const TypeInfo& rhs) const{
  return pInfo_->before(*rhs.pInfo_);
}
コード例 #5
0
ファイル: concept_map.cpp プロジェクト: LancelotGHX/Simula
 static bool apply(const std::type_info& lhs, const std::type_info& rhs)
 { return lhs.before(rhs) != 0; }
コード例 #6
0
ファイル: info.hpp プロジェクト: Ayato-Harashima/CMVS-PMVS
 bool
 operator<( typeinfo const & b ) const
     {
     return 0!=(type->before(*b.type));
     }
コード例 #7
0
ファイル: TypeIndex.hpp プロジェクト: eidolonsystems/beam
 inline bool TypeIndex::operator <(const TypeIndex& typeIndex) const {
   return m_typeInfo->before(*typeIndex.m_typeInfo);
 }