summaryrefslogtreecommitdiff
path: root/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 /libopie/pim/opimxrefpartner.h
parent1c6f490e8541626f68422e0a3a7c7281d7f5b7d3 (diff)
downloadopie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.zip
opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.gz
opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.bz2
libopie1 goes into unsupported
Diffstat (limited to 'libopie/pim/opimxrefpartner.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/opimxrefpartner.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/libopie/pim/opimxrefpartner.h b/libopie/pim/opimxrefpartner.h
deleted file mode 100644
index d76e384..0000000
--- a/libopie/pim/opimxrefpartner.h
+++ b/dev/null
@@ -1,40 +0,0 @@
-#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