blob: 0594f40baa35a80dda75c8c6e617e1070c85b924 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
Kopete Oscar Protocol
serverversionstask.h - Handles the snac family versions
Copyright (c) 2004 Matt Rogers <mattr@kde.org>
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
#ifndef SERVERVERSIONSTASK_H
#define SERVERVERSIONSTASK_H
#include "task.h"
#include <tqvaluelist.h>
#include "oscartypes.h"
class Transfer;
/**
@author Matt Rogers
*/
class ServerVersionsTask : public Task
{
TQ_OBJECT
public:
ServerVersionsTask( Task* parent );
~ServerVersionsTask();
bool forMe(const Transfer* transfer) const;
bool take(Transfer* transfer);
private:
//! Handles the families the server supports
void handleFamilies();
//! Handles the version of each family the server supports
void handleServerVersions();
//! Request the versions we want for each snac family the
//! the server supports
void requestFamilyVersions();
private:
TQValueList<int> m_familiesList;
WORD m_family;
};
#endif
|