1 | // $Id: DataWeight.cc 1734 2009-01-16 19:20:57Z peter $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2008, 2009 Peter Johansson |
---|
5 | |
---|
6 | This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
7 | |
---|
8 | The yat library is free software; you can redistribute it and/or |
---|
9 | modify it under the terms of the GNU General Public License as |
---|
10 | published by the Free Software Foundation; either version 3 of the |
---|
11 | License, or (at your option) any later version. |
---|
12 | |
---|
13 | The yat library is distributed in the hope that it will be useful, |
---|
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
20 | */ |
---|
21 | |
---|
22 | #include "DataWeight.h" |
---|
23 | |
---|
24 | namespace theplu { |
---|
25 | namespace yat { |
---|
26 | namespace utility { |
---|
27 | |
---|
28 | DataWeight::DataWeight(double data, double weight) |
---|
29 | : data_(data), weight_(weight) {} |
---|
30 | |
---|
31 | |
---|
32 | double& DataWeight::data(void) |
---|
33 | { |
---|
34 | return data_; |
---|
35 | } |
---|
36 | |
---|
37 | |
---|
38 | const double& DataWeight::data(void) const |
---|
39 | { |
---|
40 | return data_; |
---|
41 | } |
---|
42 | |
---|
43 | double& DataWeight::weight(void) |
---|
44 | { |
---|
45 | return weight_; |
---|
46 | } |
---|
47 | |
---|
48 | |
---|
49 | const double& DataWeight::weight(void) const |
---|
50 | { |
---|
51 | return weight_; |
---|
52 | } |
---|
53 | |
---|
54 | |
---|
55 | bool operator==(const DataWeight& lhs, const DataWeight& rhs) |
---|
56 | { |
---|
57 | return lhs.data() == rhs.data(); |
---|
58 | } |
---|
59 | |
---|
60 | |
---|
61 | bool operator!=(const DataWeight& lhs, const DataWeight& rhs) |
---|
62 | { |
---|
63 | return lhs.data() != rhs.data(); |
---|
64 | } |
---|
65 | |
---|
66 | |
---|
67 | bool operator<(const DataWeight& lhs, const DataWeight& rhs) |
---|
68 | { |
---|
69 | return lhs.data() < rhs.data(); |
---|
70 | } |
---|
71 | |
---|
72 | |
---|
73 | bool operator>(const DataWeight& lhs, const DataWeight& rhs) |
---|
74 | { |
---|
75 | return lhs.data() > rhs.data(); |
---|
76 | } |
---|
77 | |
---|
78 | |
---|
79 | bool operator<=(const DataWeight& lhs, const DataWeight& rhs) |
---|
80 | { |
---|
81 | return lhs.data() <= rhs.data(); |
---|
82 | } |
---|
83 | |
---|
84 | |
---|
85 | bool operator>=(const DataWeight& lhs, const DataWeight& rhs) |
---|
86 | { |
---|
87 | return lhs.data() >= rhs.data(); |
---|
88 | } |
---|
89 | |
---|
90 | |
---|
91 | }}} // of namespace utility, yat, and theplu |
---|