diff --git a/src/ApplicationController.cpp b/src/ApplicationController.cpp index 43ae3d9..3c10889 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 Open CASCADE + #include "ApplicationController.h" #include "Document.h" #include "SketchFeature.h" diff --git a/src/ApplicationController.h b/src/ApplicationController.h index cc9ca80..a38f95e 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 Open CASCADE + #ifndef APPLICATIONCONTROLLER_H #define APPLICATIONCONTROLLER_H diff --git a/src/Camera.cpp b/src/Camera.cpp index 372267a..1520fc5 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 Open CASCADE + #include "Camera.h" #include "ViewportWidget.h" #include diff --git a/src/Camera.h b/src/Camera.h index 0b962d0..8f199b6 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 Open CASCADE + #ifndef CAMERA_H #define CAMERA_H diff --git a/src/CircleTool.cpp b/src/CircleTool.cpp index 1b23cce..908441f 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 Open CASCADE + #include "CircleTool.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/CircleTool.h b/src/CircleTool.h index 4d112ed..2378d69 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 Open CASCADE + #ifndef CIRCLETOOL_H #define CIRCLETOOL_H diff --git a/src/DebugWindow.cpp b/src/DebugWindow.cpp index 8640954..1b3bc50 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 Open CASCADE + #include "DebugWindow.h" #include "Camera.h" diff --git a/src/DebugWindow.h b/src/DebugWindow.h index 2cc6a2b..eda9cf3 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 Open CASCADE + #ifndef DEBUGWINDOW_H #define DEBUGWINDOW_H diff --git a/src/Document.cpp b/src/Document.cpp index f66df09..957d48c 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 Open CASCADE + #include "Document.h" #include "Feature.h" #include "SketchFeature.h" diff --git a/src/Document.h b/src/Document.h index 9d9006b..53decf1 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 Open CASCADE + #ifndef DOCUMENT_H #define DOCUMENT_H diff --git a/src/Feature.cpp b/src/Feature.cpp index b8acf03..74d3b1c 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 Open CASCADE + #include "Feature.h" Feature::Feature(const QString& name) : m_name(name) diff --git a/src/Feature.h b/src/Feature.h index 53ea8a8..3468bb5 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 Open CASCADE + #ifndef FEATURE_H #define FEATURE_H diff --git a/src/FeatureBrowser.cpp b/src/FeatureBrowser.cpp index ec03797..7432511 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 Open CASCADE + #include "FeatureBrowser.h" #include "Document.h" #include "Feature.h" diff --git a/src/FeatureBrowser.h b/src/FeatureBrowser.h index 4b2cda3..08055c7 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 Open CASCADE + #ifndef FEATUREBROWSER_H #define FEATUREBROWSER_H diff --git a/src/LineTool.cpp b/src/LineTool.cpp index 8517c95..d5c78b5 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 Open CASCADE + #include "LineTool.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/LineTool.h b/src/LineTool.h index a532eb3..ee05bdc 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 Open CASCADE + #ifndef LINETOOL_H #define LINETOOL_H diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 4ee5257..fb3df10 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 Open CASCADE + #include "MainWindow.h" #include "ViewportWidget.h" #include "Document.h" diff --git a/src/MainWindow.h b/src/MainWindow.h index ef9368a..fe5e2af 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 Open CASCADE + #ifndef MAINWINDOW_H #define MAINWINDOW_H diff --git a/src/RectangleTool.cpp b/src/RectangleTool.cpp index e0f49fa..930c405 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 Open CASCADE + #include "RectangleTool.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/RectangleTool.h b/src/RectangleTool.h index edefc79..0230c10 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 Open CASCADE + #ifndef RECTANGLETOOL_H #define RECTANGLETOOL_H diff --git a/src/SketchCircle.cpp b/src/SketchCircle.cpp index 4e94f7b..d5b764e 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 Open CASCADE + #include "SketchCircle.h" #include diff --git a/src/SketchCircle.h b/src/SketchCircle.h index 04089fe..5cf3126 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 Open CASCADE + #ifndef SKETCHCIRCLE_H #define SKETCHCIRCLE_H diff --git a/src/SketchFeature.cpp b/src/SketchFeature.cpp index eae6d17..df0ade6 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 Open CASCADE + #include "SketchFeature.h" #include "SketchObject.h" #include "SketchLine.h" diff --git a/src/SketchFeature.h b/src/SketchFeature.h index 7af7e29..38bbb8a 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 Open CASCADE + #ifndef SKETCHFEATURE_H #define SKETCHFEATURE_H diff --git a/src/SketchGrid.cpp b/src/SketchGrid.cpp index 8b8dae9..c5d921a 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 Open CASCADE + #include "SketchGrid.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/SketchGrid.h b/src/SketchGrid.h index fc2f44e..97bdcca 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 Open CASCADE + #ifndef SKETCHGRID_H #define SKETCHGRID_H diff --git a/src/SketchLine.cpp b/src/SketchLine.cpp index 70f982e..2ae84be 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 Open CASCADE + #include "SketchLine.h" #include diff --git a/src/SketchLine.h b/src/SketchLine.h index dab72aa..41fc78f 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 Open CASCADE + #ifndef SKETCHLINE_H #define SKETCHLINE_H diff --git a/src/SketchObject.h b/src/SketchObject.h index d2346e5..6c998bc 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 Open CASCADE + #ifndef SKETCHOBJECT_H #define SKETCHOBJECT_H diff --git a/src/SketchRectangle.cpp b/src/SketchRectangle.cpp index 254965f..32d391f 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 Open CASCADE + #include "SketchRectangle.h" #include diff --git a/src/SketchRectangle.h b/src/SketchRectangle.h index 1cf1203..371c8e7 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 Open CASCADE + #ifndef SKETCHRECTANGLE_H #define SKETCHRECTANGLE_H diff --git a/src/SketchTool.cpp b/src/SketchTool.cpp index b55efb0..7fa6b43 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 Open CASCADE + #include "SketchTool.h" #include "ViewportWidget.h" #include diff --git a/src/SketchTool.h b/src/SketchTool.h index 4899410..e681e03 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 Open CASCADE + #ifndef SKETCHTOOL_H #define SKETCHTOOL_H diff --git a/src/Snapping.cpp b/src/Snapping.cpp index dc17f22..cc72238 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 Open CASCADE + #include "Snapping.h" #include "ViewportWidget.h" diff --git a/src/Snapping.h b/src/Snapping.h index ff6b4ae..44b347f 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 Open CASCADE + #ifndef SNAPPING_H #define SNAPPING_H diff --git a/src/ViewCube.cpp b/src/ViewCube.cpp index b4bb53e..7cae743 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 Open CASCADE + #include "ViewCube.h" #include #include diff --git a/src/ViewCube.h b/src/ViewCube.h index 8d5d20b..3607623 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 Open CASCADE + #ifndef VIEWCUBE_H #define VIEWCUBE_H diff --git a/src/ViewportWidget.cpp b/src/ViewportWidget.cpp index 60dcdc7..c880fa2 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 Open CASCADE + #include "ViewportWidget.h" #include "Snapping.h" #include "Camera.h" diff --git a/src/ViewportWidget.h b/src/ViewportWidget.h index 2b2420d..3267c89 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 Open CASCADE + #ifndef VIEWPORTWIDGET_H #define VIEWPORTWIDGET_H diff --git a/src/main.cpp b/src/main.cpp index 0b2ef98..a107043 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 Open CASCADE + #include #include "MainWindow.h" #include "ApplicationController.h"