summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc/ConnectionLineData.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-09-26 13:49:51 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-09-26 13:49:51 +0000
commit9b5a2b203959e26c338f6e29959d13f09a1169db (patch)
treec4b6a98c8df3b39d4ac570f49ca35a7807dec52b /dbaccess/source/ui/inc/ConnectionLineData.hxx
parent9aae75a7782525e6ac22c635c3c805e4a4c85d7a (diff)
INTEGRATION: CWS dba24a (1.5.298); FILE MERGED
2007/09/25 11:24:07 oj 1.5.298.1: #i81922# new method to compare relation data
Diffstat (limited to 'dbaccess/source/ui/inc/ConnectionLineData.hxx')
-rw-r--r--dbaccess/source/ui/inc/ConnectionLineData.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/dbaccess/source/ui/inc/ConnectionLineData.hxx b/dbaccess/source/ui/inc/ConnectionLineData.hxx
index c7960d884c73..08c6787fc861 100644
--- a/dbaccess/source/ui/inc/ConnectionLineData.hxx
+++ b/dbaccess/source/ui/inc/ConnectionLineData.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ConnectionLineData.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 15:16:14 $
+ * last change: $Author: hr $ $Date: 2007-09-26 14:49:25 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -75,6 +75,8 @@ namespace dbaui
::rtl::OUString m_aSourceFieldName;
::rtl::OUString m_aDestFieldName;
+ friend bool operator==(const OConnectionLineData& lhs, const OConnectionLineData& rhs);
+ friend bool operator!=(const OConnectionLineData& lhs, const OConnectionLineData& rhs) { return !(lhs == rhs); }
protected:
virtual ~OConnectionLineData();
public:
@@ -109,6 +111,7 @@ namespace dbaui
OConnectionLineData& operator=( const OConnectionLineData& rConnLineData );
};
+ //-------------------------------------------------------------------------
//------------------------------------------------------------------
typedef ::vos::ORef< OConnectionLineData > OConnectionLineDataRef;
typedef ::std::vector< OConnectionLineDataRef > OConnectionLineDataVec;