]> code.bitgloo.com Git - clyne/stmdsp.git/commitdiff
add header comments to gui code
authorClyne Sullivan <clyne@bitgloo.com>
Wed, 20 Jan 2021 00:38:31 +0000 (19:38 -0500)
committerClyne Sullivan <clyne@bitgloo.com>
Wed, 20 Jan 2021 00:38:46 +0000 (19:38 -0500)
gui/main.cpp
gui/stmdsp.cpp
gui/stmdsp.hpp
gui/wxapp.hpp
gui/wxmain.cpp
gui/wxmain.hpp

index 29f74d3de3acc72ab7e43f723bd209295344ce07..81146ee597e09cb1924473f1487705be0a4d8207 100644 (file)
@@ -1,3 +1,10 @@
+/**
+ * @file main.cpp
+ * @brief Program entry point.
+ *
+ * Written by Clyne Sullivan.
+ */
+
 #include "wxapp.hpp"
 
 #include <wx/app.h>
index 0621ba1aeb306aef35cbf2ff60947ae27d143815..9119284c5e27a352b0bdb5f0808390a2103a4d4a 100644 (file)
@@ -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>
index 9c60b85a92136917f1477a0cd0f804a30134914a..5dda89cfa2eece2bee2d6437b55cbe920de6e0c6 100644 (file)
@@ -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_
 
index 2133d6aabbbded9d6e7b552f2655569f80dc3794..85bddc27fc77c18a10552be62a1cb48c19ef927a 100644 (file)
@@ -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_
 
index 0efab35c8c726d30b7b02048091e1f1cf3236268..8f2e386a35f9a9864d0978bf4218c4b2f97497f0 100644 (file)
@@ -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>
index 4a73b2fa845dd1b66372df2e83a7d5b3c6cd6256..ec30f1faa62a4cc23e5c74863db1d9e1d6a1c1bb 100644 (file)
@@ -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_