blob: b04f8f53ff0b8cad2acc22613f83d8a3a169342e (
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
|
/*
Kopete Yahoo Protocol
Log off the Yahoo server
Copyright (c) 2005 André Duffeck <duffeck@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 LOGOFFTASK_H
#define LOGOFFTASK_H
#include "task.h"
/**
@author André Duffeck
*/
class LogoffTask : public Task
{
public:
LogoffTask(Task *parent);
~LogoffTask();
virtual void onGo();
};
#endif
|