mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2025-12-18 00:43:41 -05:00
18 lines
281 B
C
18 lines
281 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "wx/frame.h"
|
||
|
|
#include "PrimaryGLContext.h"
|
||
|
|
|
||
|
|
// Define a new frame type
|
||
|
|
class AppFrame : public wxFrame
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
AppFrame();
|
||
|
|
|
||
|
|
private:
|
||
|
|
void OnClose(wxCommandEvent& event);
|
||
|
|
void OnNewWindow(wxCommandEvent& event);
|
||
|
|
|
||
|
|
wxDECLARE_EVENT_TABLE();
|
||
|
|
};
|