summaryrefslogtreecommitdiff
path: root/fetchconfigaction.h
diff options
context:
space:
mode:
Diffstat (limited to 'fetchconfigaction.h')
-rw-r--r--fetchconfigaction.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/fetchconfigaction.h b/fetchconfigaction.h
new file mode 100644
index 0000000..44dbd3d
--- /dev/null
+++ b/fetchconfigaction.h
@@ -0,0 +1,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