You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
445 B
21 lines
445 B
#ifndef KMPGPWRAP_H |
|
#define KMPGPWRAP_H |
|
|
|
#include <kpgp.h> |
|
|
|
/** This class is a wrapper around @ref Kpgp::Module (in libkdenetwork). It's |
|
only purpose is to teach @ref Kpgp::Module how to show the "busy" |
|
cursor. |
|
@short This is a wrapper around Kpgp::Module. |
|
*/ |
|
class KMpgpWrap : public Kpgp::Module |
|
{ |
|
public: |
|
KMpgpWrap(); |
|
virtual ~KMpgpWrap(); |
|
virtual void setBusy(); |
|
virtual bool isBusy(); |
|
virtual void idle(); |
|
}; |
|
|
|
#endif
|
|
|