1
0
forked from 0ad/0ad
0ad/source/tools/atlas/AtlasUI/General/AtlasEventLoop.h
janwas b755ddefda remove all author/modified by tags.
make include guards consistent.

This was SVN commit r5040.
2007-05-07 16:33:24 +00:00

30 lines
527 B
C++

#ifndef INCLUDED_ATLASEVENTLOOP
#define INCLUDED_ATLASEVENTLOOP
/* Disabled (and should be removed if it turns out to be unnecessary)
- see MessagePasserImpl.cpp for information
#include "wx/evtloop.h"
struct tagMSG;
// See ScenarioEditor.cpp's QueryCallback for explanation
class AtlasEventLoop : public wxEventLoop
{
std::vector<tagMSG*> m_Messages;
bool m_NeedsPaint;
public:
AtlasEventLoop();
void AddMessage(tagMSG* msg);
void NeedsPaint();
virtual bool Dispatch();
};
*/
#endif // INCLUDED_ATLASEVENTLOOP