diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2008-09-16 22:04:42 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2008-09-16 22:04:42 +0000 |
commit | be80a4c7f1c3e5a99973cf4f2c1e3f7093eb3dd2 (patch) | |
tree | b8452e7341a772127db1d9e2e1f80d33cede8a1e /ACE/ace/ETCL/ETCL_Constraint.inl | |
parent | e0a2db465c08468728fa0cc1833ee040b9d22ee5 (diff) | |
download | ATCD-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.inl | 17 |
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); +} |