~ubuntu-branches/ubuntu/natty/kadu/natty

« back to all changes in this revision

Viewing changes to modules/agent/agent_notifications.h

  • Committer: Package Import Robot
  • Author(s): Kiszel Kristóf
  • Date: 2010-07-21 15:24:54 UTC
  • mfrom: (0.6.1) (0.5.1) (1.4.1) (22.1.2 maverick)
  • Revision ID: package-import@ubuntu.com-20100721152454-vttqle18lovfudni
Tags: 0.6.5.4.ds1-3ubuntu2
Remove libqt4-webkit-dev from build-depends and add
libqtwebkit-dev for qtwebkit transition

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *                                                                         *
 
3
 *   This program is free software; you can redistribute it and/or modify  *
 
4
 *   it under the terms of the GNU General Public License as published by  *
 
5
 *   the Free Software Foundation; either version 2 of the License, or     *
 
6
 *   (at your option) any later version.                                   *
 
7
 *                                                                         *
 
8
 ***************************************************************************/
 
9
 
 
10
#ifndef AGENT_NOTIFICATIONS_H
 
11
#define AGENT_NOTIFICATIONS_H
 
12
 
 
13
#include "agent.h"
 
14
 
 
15
#include "../notify/notification.h"
 
16
 
 
17
class Agent;
 
18
class UserListElements;
 
19
 
 
20
class NewUserFoundNotification : public Notification
 
21
{
 
22
        Q_OBJECT
 
23
 
 
24
public:
 
25
        NewUserFoundNotification(UserListElements &users);
 
26
        ~NewUserFoundNotification() { clearCallbacks(); }
 
27
 
 
28
public slots:
 
29
        void callbackFind();
 
30
};
 
31
 
 
32
#endif