blob: 44dbd3d0a426e1d5ef94f6affd299a72304585c8 (
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
|
#ifndef FETCHCONFIGACTION_H
#define FETCHCONFIGACTION_H
#include "action.h"
class XmlRpcPendingCall;
class FetchConfigAction : public Action
{
Q_OBJECT
public:
explicit FetchConfigAction(Board *board);
bool isSupersetOf(Action *action) const;
void execute();
private slots:
void handleFinishedCall();
private:
XmlRpcPendingCall *_call;
};
#endif // FETCHCONFIGACTION_H
|