Files
GDevelop/IDE/ImageEditor.h
T
Florian 9203fab207 Initial import
git-svn-id: svn://localhost@6 8062f311-0dae-4547-b526-b8ab9ac864a5
2010-01-24 19:15:15 +00:00

32 lines
378 B
C++

#ifndef IMAGEEDITOR_H
#define IMAGEEDITOR_H
//(*Headers(ImageEditor)
#include <wx/frame.h>
//*)
class ImageEditor: public wxFrame
{
public:
ImageEditor(wxWindow* parent);
virtual ~ImageEditor();
//(*Declarations(ImageEditor)
//*)
protected:
//(*Identifiers(ImageEditor)
//*)
private:
//(*Handlers(ImageEditor)
//*)
DECLARE_EVENT_TABLE()
};
#endif