summaryrefslogtreecommitdiff
path: root/noncore/unsupported/libopie/pim/opimxrefpartner.h
authormickeyl <mickeyl>2004-11-16 19:14:18 (UTC)
committer mickeyl <mickeyl>2004-11-16 19:14:18 (UTC)
commitea3945a9bd8f9830f70b1efa133f9df13b19362f (patch) (side-by-side diff)
treef2ea22cc50e9aa8aa73ee7dea148f41c563c9666 /noncore/unsupported/libopie/pim/opimxrefpartner.h
parent1c6f490e8541626f68422e0a3a7c7281d7f5b7d3 (diff)
downloadopie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.zip
opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.gz
opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.bz2
libopie1 goes into unsupported
Diffstat (limited to 'noncore/unsupported/libopie/pim/opimxrefpartner.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/libopie/pim/opimxrefpartner.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/noncore/unsupported/libopie/pim/opimxrefpartner.h b/noncore/unsupported/libopie/pim/opimxrefpartner.h
new file mode 100644
index 0000000..d76e384
--- a/dev/null
+++ b/noncore/unsupported/libopie/pim/opimxrefpartner.h
@@ -0,0 +1,40 @@
+#ifndef OPIM_XREF_PARTNER_H
+#define OPIM_XREF_PARTNER_H
+
+#include <qstring.h>
+
+/**
+ * This class represents one partner
+ * of a Cross Reference.
+ * In Opie one application
+ * can link one uid
+ * with one tableId( fieldId ) to another.
+ */
+class OPimXRefPartner {
+public:
+ OPimXRefPartner( const QString& service = QString::null,
+ int uid = 0, int field = -1 );
+ OPimXRefPartner( const OPimXRefPartner& );
+ OPimXRefPartner& operator=( const OPimXRefPartner& );
+ ~OPimXRefPartner();
+
+ bool operator==(const OPimXRefPartner& );
+
+ QString service()const;
+ int uid()const;
+ int field()const;
+
+ void setService( const QString& service );
+ void setUid( int uid );
+ void setField( int field );
+private:
+ QString m_app;
+ int m_uid;
+ int m_field;
+
+ class Private;
+ Private* d;
+};
+
+
+#endif