~ubuntu-branches/ubuntu/saucy/kopete/saucy-proposed

« back to all changes in this revision

Viewing changes to protocols/oscar/liboscar/tasks/clientreadytask.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-06-21 02:22:39 UTC
  • Revision ID: package-import@ubuntu.com-20130621022239-63l3zc8p0nf26pt6
Tags: upstream-4.10.80
ImportĀ upstreamĀ versionĀ 4.10.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Kopete Oscar Protocol
 
3
 
 
4
  Copyright (c) 2004-2005 Matt Rogers <mattr@kde.org>
 
5
 
 
6
  Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
 
7
 
 
8
  *************************************************************************
 
9
  *                                                                       *
 
10
  * This library is free software; you can redistribute it and/or         *
 
11
  * modify it under the terms of the GNU Lesser General Public            *
 
12
  * License as published by the Free Software Foundation; either          *
 
13
  * version 2 of the License, or (at your option) any later version.      *
 
14
  *                                                                       *
 
15
  *************************************************************************
 
16
*/
 
17
#ifndef CLIENTREADYTASK_H
 
18
#define CLIENTREADYTASK_H
 
19
 
 
20
#include "task.h"
 
21
 
 
22
#include "rateclass.h"
 
23
#include "QList"
 
24
 
 
25
/**
 
26
Fire and forget task to let the server know we're ready
 
27
 
 
28
@author Matt Rogers
 
29
*/
 
30
class ClientReadyTask : public Task
 
31
{
 
32
public:
 
33
        ClientReadyTask( Task* parent );
 
34
        ~ClientReadyTask();
 
35
        virtual void onGo();
 
36
 
 
37
        void setFamilies( const QList<int>& families );
 
38
 
 
39
private:
 
40
        QList<RateClass*> m_classList;
 
41
        QList<int> m_familyList;
 
42
};
 
43
 
 
44
#endif
 
45
 
 
46
//kate: tab-width 4; indent-mode csands;