summaryrefslogtreecommitdiff
path: root/noncore/unsupported/libopie/pim/opimxrefmanager.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/opimxrefmanager.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/opimxrefmanager.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/libopie/pim/opimxrefmanager.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/noncore/unsupported/libopie/pim/opimxrefmanager.h b/noncore/unsupported/libopie/pim/opimxrefmanager.h
new file mode 100644
index 0000000..c485e98
--- a/dev/null
+++ b/noncore/unsupported/libopie/pim/opimxrefmanager.h
@@ -0,0 +1,43 @@
+#ifndef OPIM_XREF_MANAGER_H
+#define OPIM_XREF_MANAGER_H
+
+#include <qstringlist.h>
+
+#include <opie/opimxref.h>
+
+/**
+ * This is a simple manager for
+ * OPimXRefs.
+ * It allows addition, removing, replacing
+ * clearing and 'querying' the XRef...
+ */
+class OPimXRefManager {
+public:
+ OPimXRefManager();
+ OPimXRefManager( const OPimXRefManager& );
+ ~OPimXRefManager();
+
+ OPimXRefManager& operator=( const OPimXRefManager& );
+ bool operator==( const OPimXRefManager& );
+
+ void add( const OPimXRef& );
+ void remove( const OPimXRef& );
+ void replace( const OPimXRef& );
+
+ void clear();
+
+ /**
+ * apps participating
+ */
+ QStringList apps()const;
+ OPimXRef::ValueList list()const;
+ OPimXRef::ValueList list( const QString& service )const;
+ OPimXRef::ValueList list( int uid )const;
+
+private:
+ OPimXRef::ValueList m_list;
+ class Private;
+ Private *d;
+};
+
+#endif