summaryrefslogtreecommitdiff
path: root/fetchboardconfigaction.h
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2013-04-01 15:04:58 +0200
committerJavier S. Pedro <maemo@javispedro.com>2013-04-01 15:04:58 +0200
commit5ef8b38e55c1883224fe1f01f47aba45b7b42666 (patch)
tree67a873c6a7c5263d202793314c3b3a61543fbb40 /fetchboardconfigaction.h
downloadtapasboard-5ef8b38e55c1883224fe1f01f47aba45b7b42666.tar.gz
tapasboard-5ef8b38e55c1883224fe1f01f47aba45b7b42666.zip
initial import
Diffstat (limited to 'fetchboardconfigaction.h')
-rw-r--r--fetchboardconfigaction.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/fetchboardconfigaction.h b/fetchboardconfigaction.h
new file mode 100644
index 0000000..05bd65f
--- /dev/null
+++ b/fetchboardconfigaction.h
@@ -0,0 +1,23 @@
+#ifndef FETCHBOARDCONFIGACTION_H
+#define FETCHBOARDCONFIGACTION_H
+
+#include "action.h"
+
+class XmlRpcPendingCall;
+
+class FetchBoardConfigAction : public Action
+{
+ Q_OBJECT
+public:
+ explicit FetchBoardConfigAction(Board *board);
+
+ void execute();
+
+private slots:
+ void handleFinishedCall();
+
+private:
+ XmlRpcPendingCall *_call;
+};
+
+#endif // FETCHBOARDCONFIGACTION_H