blob: 7becd59340123a84509710cd4d53a80d8c71df20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// **********************************************************************
//
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef ICE_COMPARABLE_H
#define ICE_COMPARABLE_H
namespace Ice
{
template<typename T, typename U>
inline bool targetEquals(const T& lhs, const U& rhs)
{
if(lhs && rhs)
{
return *lhs == *rhs;
}
else
{
return !lhs && !rhs;
}
}
template<typename T>
struct TargetEquals
{
bool operator()(const T& lhs, const T& rhs) const
{
return targetEquals(lhs, rhs);
}
};
template<typename T, typename U>
inline bool targetLess(const T& lhs, const U& rhs)
{
if(lhs && rhs)
{
return *lhs < *rhs;
}
else
{
return !lhs && rhs;
}
}
template<typename T>
struct TargetLess
{
bool operator()(const T& lhs, const T& rhs) const
{
return targetLess(lhs, rhs);
}
};
}
#endif
|