mirror of
https://github.com/n5ac/smartsdr-dsp.git
synced 2026-03-15 08:33:48 +01:00
53 lines
1.7 KiB
C#
53 lines
1.7 KiB
C#
/*******************************************************************************
|
|
* Program.cs
|
|
*
|
|
* An example GUI showing how to interface to the FlexRadio Modem API
|
|
*
|
|
* Created on: 2014-08-29
|
|
* Author: Eric / KE5DTO
|
|
*
|
|
*******************************************************************************
|
|
*
|
|
* Copyright (C) 2014 FlexRadio Systems.
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Contact: gpl<AT>flexradio<DOT>com or
|
|
*
|
|
* GPL C/O FlexRadio Systems
|
|
* 4616 W. Howard Lane
|
|
* Suite 1-150
|
|
* Austin, TX USA 78728
|
|
*
|
|
******************************************************************************/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CODEC2_GUI
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new MainForm());
|
|
}
|
|
}
|
|
}
|