summaryrefslogtreecommitdiffabout
path: root/kabc/distributionlist.h
Side-by-side diff
Diffstat (limited to 'kabc/distributionlist.h') (more/less context) (show whitespace changes)
-rw-r--r--kabc/distributionlist.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/kabc/distributionlist.h b/kabc/distributionlist.h
index 584f287..c81e543 100644
--- a/kabc/distributionlist.h
+++ b/kabc/distributionlist.h
@@ -12,25 +12,25 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef KABC_DISTRIBUTIONLIST_H
#define KABC_DISTRIBUTIONLIST_H
-#include <kdirwatch.h>
+//#include <kdirwatch.h>
#include "addressbook.h"
namespace KABC {
class DistributionListManager;
/**
@short Distribution list of email addresses
This class represents a list of email addresses. Each email address is
associated with an address book entry. If the address book entry changes, the
@@ -176,42 +176,37 @@ class DistributionListManager
This class provides a @ref changed() signal that i emitted when the
distribution lists has changed in some way.
Exapmle:
<pre>
KABC::DistributionListWatcher *watchdog = KABC::DistributionListWatcher::self()
connect( watchdog, SIGNAL( changed() ), SLOT( doSomething() ) );
</pre>
*/
+/*
class DistributionListWatcher : public QObject
{
- Q_OBJECT
+ Q_OBJECT_XX
public:
- /**
- * Returns the watcher object.
- */
+
static DistributionListWatcher *self();
signals:
- /**
- * This signal is emmitted whenever the distribution lists has
- * changed (if a list was added or removed, when a list was
- * renamed or the entries of the list changed).
- */
+
void changed();
protected:
DistributionListWatcher();
~DistributionListWatcher();
private:
static DistributionListWatcher* mSelf;
KDirWatch *mDirWatch;
};
-
+*/
}
#endif