summaryrefslogtreecommitdiff
path: root/ACE/ace/ETCL/ETCL_Constraint.inl
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-09-16 22:04:42 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-09-16 22:04:42 +0000
commitbe80a4c7f1c3e5a99973cf4f2c1e3f7093eb3dd2 (patch)
treeb8452e7341a772127db1d9e2e1f80d33cede8a1e /ACE/ace/ETCL/ETCL_Constraint.inl
parente0a2db465c08468728fa0cc1833ee040b9d22ee5 (diff)
downloadATCD-be80a4c7f1c3e5a99973cf4f2c1e3f7093eb3dd2.tar.gz
ChangeLogTag: Tue Sep 16 21:58:59 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'ACE/ace/ETCL/ETCL_Constraint.inl')
-rw-r--r--ACE/ace/ETCL/ETCL_Constraint.inl17
1 files changed, 17 insertions, 0 deletions
diff --git a/ACE/ace/ETCL/ETCL_Constraint.inl b/ACE/ace/ETCL/ETCL_Constraint.inl
index b63022252d2..e01cf43da40 100644
--- a/ACE/ace/ETCL/ETCL_Constraint.inl
+++ b/ACE/ace/ETCL/ETCL_Constraint.inl
@@ -372,3 +372,20 @@ ETCL_Preference::subexpr (void) const
return this->subexpr_;
}
+ACE_INLINE bool
+ETCL_Literal_Constraint::operator!= (const ETCL_Literal_Constraint & rhs)
+{
+ return !(*this == rhs);
+}
+
+ACE_INLINE bool
+ETCL_Literal_Constraint::operator<= (const ETCL_Literal_Constraint & rhs)
+{
+ return !(*this > rhs);
+}
+
+ACE_INLINE bool
+ETCL_Literal_Constraint::operator>= (const ETCL_Literal_Constraint & rhs)
+{
+ return !(*this < rhs);
+}