///////////////////////////////////////////////////////////////////////////////////////////
// Authors: Eva Bunodiere, Yasmin Kossak
// AboutDialog.h
// AboutDialog Class Declaration
// JPC36 Wx-View
// July 25th 2000
// Technical Advisor : Carlos Moreno
///////////////////////////////////////////////////////////////////////////////////////////

#ifndef __ABOUT_DIALOG_H__
#define __ABOUT_DIALOG_H__

#include "wx/wxprec.h"

#ifdef __BORLANDC__
    #pragma hdrstop
#endif

#ifndef WX_PRECOMP
    #include "wx/wx.h"
#endif

class AboutDialog : public wxDialog
{
public:
    AboutDialog (wxWindow* parent, wxWindowID id, const wxString title, const wxString& message,
                 const wxString & OK);
};

#endif	//!def __ABOUT_DIALOG_H__
