add header comments to gui code

pull/3/head
Clyne 4 years ago
parent 3ee38d2e74
commit 04e23e9ad7

@ -1,3 +1,10 @@
/**
* @file main.cpp
* @brief Program entry point.
*
* Written by Clyne Sullivan.
*/
#include "wxapp.hpp"
#include <wx/app.h>

@ -1,3 +1,14 @@
/**
* @file stmdsp.cpp
* @brief Interface for communication with stmdsp device over serial.
*
* Copyright (C) 2021 Clyne Sullivan
*
* Distributed under the GNU GPL v3 or later. You should have received a copy of
* the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
#include "stmdsp.hpp"
#include <serial/serial.h>

@ -1,3 +1,14 @@
/**
* @file stmdsp.hpp
* @brief Interface for communication with stmdsp device over serial.
*
* Copyright (C) 2021 Clyne Sullivan
*
* Distributed under the GNU GPL v3 or later. You should have received a copy of
* the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef STMDSP_HPP_
#define STMDSP_HPP_

@ -1,3 +1,14 @@
/**
* @file wxapp.hpp
* @brief Main application object for the stmdsp gui.
*
* Copyright (C) 2021 Clyne Sullivan
*
* Distributed under the GNU GPL v3 or later. You should have received a copy of
* the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef WXAPP_HPP_
#define WXAPP_HPP_

@ -1,3 +1,14 @@
/**
* @file wxmain.cpp
* @brief Main window definition.
*
* Copyright (C) 2021 Clyne Sullivan
*
* Distributed under the GNU GPL v3 or later. You should have received a copy of
* the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
#include "wxmain.hpp"
#include <wx/combobox.h>

@ -1,3 +1,14 @@
/**
* @file wxmain.hpp
* @brief Main window definition.
*
* Copyright (C) 2021 Clyne Sullivan
*
* Distributed under the GNU GPL v3 or later. You should have received a copy of
* the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef WXMAIN_HPP_
#define WXMAIN_HPP_

Loading…
Cancel
Save