1
0
forked from 0ad/0ad
0ad/source/tools/atlas/AtlasUI/General/AtlasWindowCommandProc.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

19 lines
473 B
C++

#ifndef INCLUDED_ATLASWINDOWCOMMANDPROC
#define INCLUDED_ATLASWINDOWCOMMANDPROC
#include "wx/cmdproc.h"
class AtlasWindowCommandProc : public wxCommandProcessor
{
public:
bool Submit(wxCommand *command, bool storeIt = true);
// Mark the most recent command as finalized, so it won't be
// merged with any subsequent ones
void FinaliseLastCommand();
static AtlasWindowCommandProc* GetFromParentFrame(wxWindow* object);
};
#endif // INCLUDED_ATLASWINDOWCOMMANDPROC