mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-02-15 15:05:58 -05:00
16 lines
461 B
C++
16 lines
461 B
C++
// Copyright (c) Charles J. Cliffe
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#pragma once
|
|
|
|
#include "AboutDialogBase.h"
|
|
#include "CubicSDRDefs.h"
|
|
|
|
class AboutDialog : public AboutDialogBase {
|
|
public:
|
|
AboutDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("About"),
|
|
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 530, 420 ),
|
|
long style = wxDEFAULT_DIALOG_STYLE );
|
|
|
|
};
|