summaryrefslogtreecommitdiffstats
path: root/creator_thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'creator_thread.h')
-rw-r--r--creator_thread.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/creator_thread.h b/creator_thread.h
new file mode 100644
index 0000000..82b218b
--- /dev/null
+++ b/creator_thread.h
@@ -0,0 +1,19 @@
+#ifndef CREATOR_THREAD_H
+#define CREATOR_THREAD_H
+
+#include <wx/thread.h>
+#include "dialog.h"
+
+class CreatorThread : public wxThread
+{
+public:
+ CreatorThread(Dialog *d);
+ virtual void *Entry();
+ virtual void OnExit();
+
+protected:
+ Dialog *m_dialog;
+};
+
+#endif
+