summaryrefslogtreecommitdiff
path: root/noncore/unsupported/libopie/pim/opimxrefpartner.h
Side-by-side diff
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