summaryrefslogtreecommitdiff
path: root/libopie/pim/opimxrefmanager.h
Side-by-side diff
Diffstat (limited to 'libopie/pim/opimxrefmanager.h') (more/less context) (show whitespace changes)
-rw-r--r--libopie/pim/opimxrefmanager.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/libopie/pim/opimxrefmanager.h b/libopie/pim/opimxrefmanager.h
deleted file mode 100644
index c485e98..0000000
--- a/libopie/pim/opimxrefmanager.h
+++ b/dev/null
@@ -1,43 +0,0 @@
-#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