From f22c14e8adaaf0b5c2ed35d7064ee2ddc07a4095 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Thu, 19 Feb 2026 10:55:03 -0700 Subject: [PATCH] Add file headers --- src/ApplicationController.cpp | 7 +++++++ src/ApplicationController.h | 7 +++++++ src/Camera.cpp | 7 +++++++ src/Camera.h | 7 +++++++ src/CircleTool.cpp | 7 +++++++ src/CircleTool.h | 7 +++++++ src/DebugWindow.cpp | 7 +++++++ src/DebugWindow.h | 7 +++++++ src/Document.cpp | 7 +++++++ src/Document.h | 7 +++++++ src/Feature.cpp | 7 +++++++ src/Feature.h | 7 +++++++ src/FeatureBrowser.cpp | 7 +++++++ src/FeatureBrowser.h | 7 +++++++ src/LineTool.cpp | 7 +++++++ src/LineTool.h | 7 +++++++ src/MainWindow.cpp | 7 +++++++ src/MainWindow.h | 7 +++++++ src/RectangleTool.cpp | 7 +++++++ src/RectangleTool.h | 7 +++++++ src/SketchCircle.cpp | 7 +++++++ src/SketchCircle.h | 7 +++++++ src/SketchFeature.cpp | 7 +++++++ src/SketchFeature.h | 7 +++++++ src/SketchGrid.cpp | 7 +++++++ src/SketchGrid.h | 7 +++++++ src/SketchLine.cpp | 7 +++++++ src/SketchLine.h | 7 +++++++ src/SketchObject.h | 7 +++++++ src/SketchRectangle.cpp | 7 +++++++ src/SketchRectangle.h | 7 +++++++ src/SketchTool.cpp | 7 +++++++ src/SketchTool.h | 7 +++++++ src/Snapping.cpp | 7 +++++++ src/Snapping.h | 7 +++++++ src/ViewCube.cpp | 7 +++++++ src/ViewCube.h | 7 +++++++ src/ViewportWidget.cpp | 7 +++++++ src/ViewportWidget.h | 7 +++++++ src/main.cpp | 7 +++++++ 40 files changed, 280 insertions(+) diff --git a/src/ApplicationController.cpp b/src/ApplicationController.cpp index 43ae3d9..1301e59 100644 --- a/src/ApplicationController.cpp +++ b/src/ApplicationController.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "ApplicationController.h" #include "Document.h" #include "SketchFeature.h" diff --git a/src/ApplicationController.h b/src/ApplicationController.h index cc9ca80..493c121 100644 --- a/src/ApplicationController.h +++ b/src/ApplicationController.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef APPLICATIONCONTROLLER_H #define APPLICATIONCONTROLLER_H diff --git a/src/Camera.cpp b/src/Camera.cpp index 372267a..16f2be0 100644 --- a/src/Camera.cpp +++ b/src/Camera.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "Camera.h" #include "ViewportWidget.h" #include diff --git a/src/Camera.h b/src/Camera.h index 0b962d0..ee65596 100644 --- a/src/Camera.h +++ b/src/Camera.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef CAMERA_H #define CAMERA_H diff --git a/src/CircleTool.cpp b/src/CircleTool.cpp index 1b23cce..ba52af7 100644 --- a/src/CircleTool.cpp +++ b/src/CircleTool.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "CircleTool.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/CircleTool.h b/src/CircleTool.h index 4d112ed..b6a1dd9 100644 --- a/src/CircleTool.h +++ b/src/CircleTool.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef CIRCLETOOL_H #define CIRCLETOOL_H diff --git a/src/DebugWindow.cpp b/src/DebugWindow.cpp index 8640954..1e5aef4 100644 --- a/src/DebugWindow.cpp +++ b/src/DebugWindow.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "DebugWindow.h" #include "Camera.h" diff --git a/src/DebugWindow.h b/src/DebugWindow.h index 2cc6a2b..6c6ab0d 100644 --- a/src/DebugWindow.h +++ b/src/DebugWindow.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef DEBUGWINDOW_H #define DEBUGWINDOW_H diff --git a/src/Document.cpp b/src/Document.cpp index f66df09..e6682a7 100644 --- a/src/Document.cpp +++ b/src/Document.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "Document.h" #include "Feature.h" #include "SketchFeature.h" diff --git a/src/Document.h b/src/Document.h index 9d9006b..8801b00 100644 --- a/src/Document.h +++ b/src/Document.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef DOCUMENT_H #define DOCUMENT_H diff --git a/src/Feature.cpp b/src/Feature.cpp index b8acf03..a77eb47 100644 --- a/src/Feature.cpp +++ b/src/Feature.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "Feature.h" Feature::Feature(const QString& name) : m_name(name) diff --git a/src/Feature.h b/src/Feature.h index 53ea8a8..7fdd1f2 100644 --- a/src/Feature.h +++ b/src/Feature.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef FEATURE_H #define FEATURE_H diff --git a/src/FeatureBrowser.cpp b/src/FeatureBrowser.cpp index ec03797..a18e138 100644 --- a/src/FeatureBrowser.cpp +++ b/src/FeatureBrowser.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "FeatureBrowser.h" #include "Document.h" #include "Feature.h" diff --git a/src/FeatureBrowser.h b/src/FeatureBrowser.h index 4b2cda3..54d96aa 100644 --- a/src/FeatureBrowser.h +++ b/src/FeatureBrowser.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef FEATUREBROWSER_H #define FEATUREBROWSER_H diff --git a/src/LineTool.cpp b/src/LineTool.cpp index 8517c95..330c45b 100644 --- a/src/LineTool.cpp +++ b/src/LineTool.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "LineTool.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/LineTool.h b/src/LineTool.h index a532eb3..166ac5f 100644 --- a/src/LineTool.h +++ b/src/LineTool.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef LINETOOL_H #define LINETOOL_H diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 4ee5257..8a145eb 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "MainWindow.h" #include "ViewportWidget.h" #include "Document.h" diff --git a/src/MainWindow.h b/src/MainWindow.h index ef9368a..d87dbe3 100644 --- a/src/MainWindow.h +++ b/src/MainWindow.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef MAINWINDOW_H #define MAINWINDOW_H diff --git a/src/RectangleTool.cpp b/src/RectangleTool.cpp index e0f49fa..e315b4d 100644 --- a/src/RectangleTool.cpp +++ b/src/RectangleTool.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "RectangleTool.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/RectangleTool.h b/src/RectangleTool.h index edefc79..0e1aa67 100644 --- a/src/RectangleTool.h +++ b/src/RectangleTool.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef RECTANGLETOOL_H #define RECTANGLETOOL_H diff --git a/src/SketchCircle.cpp b/src/SketchCircle.cpp index 4e94f7b..dba2f33 100644 --- a/src/SketchCircle.cpp +++ b/src/SketchCircle.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "SketchCircle.h" #include diff --git a/src/SketchCircle.h b/src/SketchCircle.h index 04089fe..eeca788 100644 --- a/src/SketchCircle.h +++ b/src/SketchCircle.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef SKETCHCIRCLE_H #define SKETCHCIRCLE_H diff --git a/src/SketchFeature.cpp b/src/SketchFeature.cpp index eae6d17..ffa70fb 100644 --- a/src/SketchFeature.cpp +++ b/src/SketchFeature.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "SketchFeature.h" #include "SketchObject.h" #include "SketchLine.h" diff --git a/src/SketchFeature.h b/src/SketchFeature.h index 7af7e29..e6f9bed 100644 --- a/src/SketchFeature.h +++ b/src/SketchFeature.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef SKETCHFEATURE_H #define SKETCHFEATURE_H diff --git a/src/SketchGrid.cpp b/src/SketchGrid.cpp index 8b8dae9..69bd17d 100644 --- a/src/SketchGrid.cpp +++ b/src/SketchGrid.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "SketchGrid.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/SketchGrid.h b/src/SketchGrid.h index fc2f44e..1bd48de 100644 --- a/src/SketchGrid.h +++ b/src/SketchGrid.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef SKETCHGRID_H #define SKETCHGRID_H diff --git a/src/SketchLine.cpp b/src/SketchLine.cpp index 70f982e..c89cc98 100644 --- a/src/SketchLine.cpp +++ b/src/SketchLine.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "SketchLine.h" #include diff --git a/src/SketchLine.h b/src/SketchLine.h index dab72aa..0e2a494 100644 --- a/src/SketchLine.h +++ b/src/SketchLine.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef SKETCHLINE_H #define SKETCHLINE_H diff --git a/src/SketchObject.h b/src/SketchObject.h index d2346e5..2089a34 100644 --- a/src/SketchObject.h +++ b/src/SketchObject.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef SKETCHOBJECT_H #define SKETCHOBJECT_H diff --git a/src/SketchRectangle.cpp b/src/SketchRectangle.cpp index 254965f..304c07b 100644 --- a/src/SketchRectangle.cpp +++ b/src/SketchRectangle.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "SketchRectangle.h" #include diff --git a/src/SketchRectangle.h b/src/SketchRectangle.h index 1cf1203..4cf8b8e 100644 --- a/src/SketchRectangle.h +++ b/src/SketchRectangle.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef SKETCHRECTANGLE_H #define SKETCHRECTANGLE_H diff --git a/src/SketchTool.cpp b/src/SketchTool.cpp index b55efb0..6f2560b 100644 --- a/src/SketchTool.cpp +++ b/src/SketchTool.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "SketchTool.h" #include "ViewportWidget.h" #include diff --git a/src/SketchTool.h b/src/SketchTool.h index 4899410..f1cba08 100644 --- a/src/SketchTool.h +++ b/src/SketchTool.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef SKETCHTOOL_H #define SKETCHTOOL_H diff --git a/src/Snapping.cpp b/src/Snapping.cpp index dc17f22..01b5b49 100644 --- a/src/Snapping.cpp +++ b/src/Snapping.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "Snapping.h" #include "ViewportWidget.h" diff --git a/src/Snapping.h b/src/Snapping.h index ff6b4ae..8d632e6 100644 --- a/src/Snapping.h +++ b/src/Snapping.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef SNAPPING_H #define SNAPPING_H diff --git a/src/ViewCube.cpp b/src/ViewCube.cpp index b4bb53e..a5896c6 100644 --- a/src/ViewCube.cpp +++ b/src/ViewCube.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "ViewCube.h" #include #include diff --git a/src/ViewCube.h b/src/ViewCube.h index 8d5d20b..bb002d2 100644 --- a/src/ViewCube.h +++ b/src/ViewCube.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef VIEWCUBE_H #define VIEWCUBE_H diff --git a/src/ViewportWidget.cpp b/src/ViewportWidget.cpp index 60dcdc7..71b7425 100644 --- a/src/ViewportWidget.cpp +++ b/src/ViewportWidget.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include "ViewportWidget.h" #include "Snapping.h" #include "Camera.h" diff --git a/src/ViewportWidget.h b/src/ViewportWidget.h index 2b2420d..ff04088 100644 --- a/src/ViewportWidget.h +++ b/src/ViewportWidget.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #ifndef VIEWPORTWIDGET_H #define VIEWPORTWIDGET_H diff --git a/src/main.cpp b/src/main.cpp index 0b2ef98..fa36c7b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3, see LICENSE.txt +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match OpenCASCADE + #include #include "MainWindow.h" #include "ApplicationController.h"