diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-06-20 16:51:51 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-06-20 16:51:51 (GMT) |
| commit | 0594aa5d07d7bf63885eee966d102e3e7354c925 (patch) | |
| tree | 5700cb10ab0e63b6684eaeba225d578bf2f1dfa6 /src/update/UpdateActivity.h | |
| parent | 088b2f678d5baedcf3555a5afce76710e6900a9e (diff) | |
| download | powder-0594aa5d07d7bf63885eee966d102e3e7354c925.zip powder-0594aa5d07d7bf63885eee966d102e3e7354c925.tar.gz | |
More in the way of an autoupdater
Diffstat (limited to 'src/update/UpdateActivity.h')
| -rw-r--r-- | src/update/UpdateActivity.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/update/UpdateActivity.h b/src/update/UpdateActivity.h new file mode 100644 index 0000000..6865fdf --- /dev/null +++ b/src/update/UpdateActivity.h @@ -0,0 +1,22 @@ +/* + * UpdateActivity.h + * + * Created on: Jun 20, 2012 + * Author: Simon + */ + +#ifndef UPDATEACTIVITY_H_ +#define UPDATEACTIVITY_H_ + +#include "interface/Window.h" +#include "tasks/TaskWindow.h" + +class UpdateActivity { + Task * updateDownloadTask; + TaskWindow * updateWindow; +public: + UpdateActivity(); + virtual ~UpdateActivity(); +}; + +#endif /* UPDATEACTIVITY_H_ */ |
