summaryrefslogtreecommitdiffstats
path: root/creator_thread.h
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-07-17 21:44:03 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2012-07-17 21:44:03 +0200
commit5384d95c28298710fee6728bb83614a130469716 (patch)
tree75ee887fc1a5d8c3a29c321dddacb6d72159589d /creator_thread.h
parentb26534cb358803feefd03a21fc51764be541b852 (diff)
downloadalpine-usb-creator-5384d95c28298710fee6728bb83614a130469716.tar.bz2
alpine-usb-creator-5384d95c28298710fee6728bb83614a130469716.tar.xz
Pass over source and target to creator thread
Diffstat (limited to 'creator_thread.h')
-rw-r--r--creator_thread.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/creator_thread.h b/creator_thread.h
index 82b218b..aecb228 100644
--- a/creator_thread.h
+++ b/creator_thread.h
@@ -1,18 +1,22 @@
#ifndef CREATOR_THREAD_H
#define CREATOR_THREAD_H
+#include <wx/filename.h>
#include <wx/thread.h>
#include "dialog.h"
class CreatorThread : public wxThread
{
public:
- CreatorThread(Dialog *d);
+ CreatorThread(Dialog *d, const wxString &iso, const wxString &target);
+ ~CreatorThread();
virtual void *Entry();
virtual void OnExit();
protected:
Dialog *m_dialog;
+ wxFileName *m_source;
+ wxFileName *m_target;
};
#endif