
#ifndef DKTRG_H_INCLUDED
#define DKTRG_H_INCLUDED 1

/**	@file	dktrg.h	Dktrace GUI header file.
*/

#include "dk3all.h"
#include "dktr.h"

#include <wx/wx.h>


/**	The application.
*/
class DkTraceGuiApp : public wxApp
{
  public:
    /**	Initialize application.
     * 	@return	true on success, false on error.
    */
    virtual bool OnInit();
}



/**	The main window frame class.
*/
class DkTraceGuiFrame : public wxFrame
{
  private:
    DECLARE_EVENT_TABLE()

  public:
    DkTraceGuiFrame(wxString const & sTitle);
}

#endif

