diff options
Diffstat (limited to 'kopete/protocols/yahoo/libkyahoo/requestpicturetask.h')
-rw-r--r-- | kopete/protocols/yahoo/libkyahoo/requestpicturetask.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/kopete/protocols/yahoo/libkyahoo/requestpicturetask.h b/kopete/protocols/yahoo/libkyahoo/requestpicturetask.h new file mode 100644 index 00000000..146f585e --- /dev/null +++ b/kopete/protocols/yahoo/libkyahoo/requestpicturetask.h @@ -0,0 +1,41 @@ +/* + Kopete Yahoo Protocol + Request a Picture of a Buddy + + Copyright (c) 2005 André Duffeck <[email protected]> + + ************************************************************************* + * * + * 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 REQUESTPICTURETASK_H +#define REQUESTPICTURETASK_H + +#include "task.h" + +class QString; + +/** +@author André Duffeck +*/ +class RequestPictureTask : public Task +{ +Q_OBJECT +public: + RequestPictureTask(Task *parent); + ~RequestPictureTask(); + + virtual void onGo(); + + void setTarget( const QString &target ); +private: + QString m_target; +}; + +#endif |