summaryrefslogtreecommitdiffstats
path: root/creator_thread.h
blob: 82b218be8df05443ac400013bbffd48abbf737c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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