Use new vnc syntax (with a colon).
[qemu-gui.git] / vncdisplaythread.h
blobe852573789ff661b017ec0473fe04475e0dc0154
1 #ifndef QEMU_GUI_VNC_DISPLAY_THREAD_H
2 #define QEMU_GUI_VNC_DISPLAY_THREAD_H
4 #include <wx/thread.h>
5 class VNCPanel;
7 class VNCDisplayThread : public wxThread {
8 public:
9 /**
10 * Creates a new VNCDisplayThread.
12 * @param panel The VNCPanel to talk to.
14 VNCDisplayThread(VNCPanel *panel);
16 /**
17 * Stops this thread.
19 void Stop();
21 private:
22 VNCPanel *panel;
23 bool running;
25 /**
26 * The thread code. Called by wxThread::Run().
28 void *Entry();
32 #endif