author | zecke <zecke> | 2002-11-15 11:37:20 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-11-15 11:37:20 (UTC) |
commit | ab8d331905b59a86b50cd513123cdde67e4bfb8a (patch) (side-by-side diff) | |
tree | 38a0d3a04cd0f594fbf58644447e985e8385f5b0 /libopie/pim/opimxrefpartner.h | |
parent | dc68676392f6ac7cced3a9b004fe72a8b408812f (diff) | |
download | opie-ab8d331905b59a86b50cd513123cdde67e4bfb8a.zip opie-ab8d331905b59a86b50cd513123cdde67e4bfb8a.tar.gz opie-ab8d331905b59a86b50cd513123cdde67e4bfb8a.tar.bz2 |
Add proposal header for Cross Referencing..
look at them and comment
Diffstat (limited to 'libopie/pim/opimxrefpartner.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libopie/pim/opimxrefpartner.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/libopie/pim/opimxrefpartner.h b/libopie/pim/opimxrefpartner.h new file mode 100644 index 0000000..808b9ab --- a/dev/null +++ b/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& appName = QString::null, + int uid = 0, int field = -1 ); + OPimXRefPartner( const OPimXRefPartner& ); + OPimXRefPartner& operator=( const OPimXRefPartner& ); + ~OPimXRefPartner(); + + bool operator==(const OPimXRefPartner& ); + + QString appName()const; + int uid()const; + int field()const; + + void setAppName( const QString& appName ); + void setUid( int uid ); + void setField( int field ); +private: + QString m_app; + int m_uid; + int m_field; + + class Private; + Private* d; +}; + + +#endif |