From 0ef58327594fcf32f9aeb3e54028df9f5ff3d533 Mon Sep 17 00:00:00 2001
From: "Joachim Wuttke (o)" <j.wuttke@fz-juelich.de>
Date: Tue, 28 Dec 2021 09:37:14 +0100
Subject: [PATCH] mv in GUI/Model

---
 GUI/Model/{Types => Group}/SelectionProperty.h | 8 ++++----
 GUI/Model/Sample/InterferenceItems.h           | 2 +-
 GUI/Model/Sample/ItemWithParticles.h           | 2 +-
 GUI/Model/Sample/MesoCrystalItem.h             | 2 +-
 GUI/Model/Sample/ParticleItem.h                | 2 +-
 GUI/Model/Sample/ParticleLayoutItem.h          | 2 +-
 GUI/Model/Session/Serializer.h                 | 2 +-
 GUI/Model/Session/SessionXML.h                 | 2 +-
 8 files changed, 11 insertions(+), 11 deletions(-)
 rename GUI/Model/{Types => Group}/SelectionProperty.h (87%)

diff --git a/GUI/Model/Types/SelectionProperty.h b/GUI/Model/Group/SelectionProperty.h
similarity index 87%
rename from GUI/Model/Types/SelectionProperty.h
rename to GUI/Model/Group/SelectionProperty.h
index e2d5e7f2df0..e017f3b4941 100644
--- a/GUI/Model/Types/SelectionProperty.h
+++ b/GUI/Model/Group/SelectionProperty.h
@@ -2,7 +2,7 @@
 //
 //  BornAgain: simulate and fit reflection and scattering
 //
-//! @file      GUI/Model/Types/SelectionProperty.h
+//! @file      GUI/Model/Group/SelectionProperty.h
 //! @brief     Defines class SelectionProperty
 //!
 //! @homepage  http://www.bornagainproject.org
@@ -12,8 +12,8 @@
 //
 //  ************************************************************************************************
 
-#ifndef BORNAGAIN_GUI_MODEL_TYPES_SELECTIONPROPERTY_H
-#define BORNAGAIN_GUI_MODEL_TYPES_SELECTIONPROPERTY_H
+#ifndef BORNAGAIN_GUI_MODEL_GROUP_SELECTIONPROPERTY_H
+#define BORNAGAIN_GUI_MODEL_GROUP_SELECTIONPROPERTY_H
 
 #include "GUI/Model/Group/SelectionDescriptor.h"
 
@@ -53,4 +53,4 @@ private:
 };
 
 
-#endif // BORNAGAIN_GUI_MODEL_TYPES_SELECTIONPROPERTY_H
+#endif // BORNAGAIN_GUI_MODEL_GROUP_SELECTIONPROPERTY_H
diff --git a/GUI/Model/Sample/InterferenceItems.h b/GUI/Model/Sample/InterferenceItems.h
index e86c2157db0..ff6dcd7199b 100644
--- a/GUI/Model/Sample/InterferenceItems.h
+++ b/GUI/Model/Sample/InterferenceItems.h
@@ -19,7 +19,7 @@
 #include "GUI/Model/Sample/FTDistributionItems.h"
 #include "GUI/Model/Sample/Lattice2DItems.h"
 #include "GUI/Model/Types/DoubleProperty.h"
-#include "GUI/Model/Types/SelectionProperty.h"
+#include "GUI/Model/Group/SelectionProperty.h"
 #include "GUI/Model/Types/UIntProperty.h"
 #include <memory>
 
diff --git a/GUI/Model/Sample/ItemWithParticles.h b/GUI/Model/Sample/ItemWithParticles.h
index 3ea4cb21ede..3920ceeabb1 100644
--- a/GUI/Model/Sample/ItemWithParticles.h
+++ b/GUI/Model/Sample/ItemWithParticles.h
@@ -17,7 +17,7 @@
 
 #include "GUI/Model/Sample/RotationItems.h"
 #include "GUI/Model/Types/DoubleProperty.h"
-#include "GUI/Model/Types/SelectionProperty.h"
+#include "GUI/Model/Group/SelectionProperty.h"
 #include "GUI/Model/Types/VectorProperty.h"
 #include <memory>
 
diff --git a/GUI/Model/Sample/MesoCrystalItem.h b/GUI/Model/Sample/MesoCrystalItem.h
index c9ea3a02a05..77231d7ae95 100644
--- a/GUI/Model/Sample/MesoCrystalItem.h
+++ b/GUI/Model/Sample/MesoCrystalItem.h
@@ -17,7 +17,7 @@
 
 #include "GUI/Model/Sample/FormFactorItems.h"
 #include "GUI/Model/Sample/ItemWithParticles.h"
-#include "GUI/Model/Types/SelectionProperty.h"
+#include "GUI/Model/Group/SelectionProperty.h"
 #include "GUI/Model/Types/VectorProperty.h"
 #include "Sample/Lattice/Lattice3D.h"
 #include <memory>
diff --git a/GUI/Model/Sample/ParticleItem.h b/GUI/Model/Sample/ParticleItem.h
index 5eafe2ee829..a35c84bb71b 100644
--- a/GUI/Model/Sample/ParticleItem.h
+++ b/GUI/Model/Sample/ParticleItem.h
@@ -18,7 +18,7 @@
 #include "GUI/Model/Sample/FormFactorItems.h"
 #include "GUI/Model/Sample/ItemWithMaterial.h"
 #include "GUI/Model/Sample/ItemWithParticles.h"
-#include "GUI/Model/Types/SelectionProperty.h"
+#include "GUI/Model/Group/SelectionProperty.h"
 #include <memory>
 
 class GroupItem;
diff --git a/GUI/Model/Sample/ParticleLayoutItem.h b/GUI/Model/Sample/ParticleLayoutItem.h
index b107adf0470..16f39f07f17 100644
--- a/GUI/Model/Sample/ParticleLayoutItem.h
+++ b/GUI/Model/Sample/ParticleLayoutItem.h
@@ -17,7 +17,7 @@
 
 #include "GUI/Model/Sample/InterferenceItems.h"
 #include "GUI/Model/Types/DoubleProperty.h"
-#include "GUI/Model/Types/SelectionProperty.h"
+#include "GUI/Model/Group/SelectionProperty.h"
 #include <QUuid>
 #include <memory>
 
diff --git a/GUI/Model/Session/Serializer.h b/GUI/Model/Session/Serializer.h
index 9b750248439..e28e416b133 100644
--- a/GUI/Model/Session/Serializer.h
+++ b/GUI/Model/Session/Serializer.h
@@ -16,7 +16,7 @@
 #define BORNAGAIN_GUI_MODEL_SESSION_SERIALIZER_H
 
 #include "GUI/Model/Types/DoubleDescriptor.h"
-#include "GUI/Model/Types/SelectionProperty.h"
+#include "GUI/Model/Group/SelectionProperty.h"
 #include <QXmlStreamWriter> // used in every including file
 
 class DoubleProperty;
diff --git a/GUI/Model/Session/SessionXML.h b/GUI/Model/Session/SessionXML.h
index e9cb72e2135..ba1ea32e419 100644
--- a/GUI/Model/Session/SessionXML.h
+++ b/GUI/Model/Session/SessionXML.h
@@ -16,7 +16,7 @@
 #define BORNAGAIN_GUI_MODEL_SESSION_SESSIONXML_H
 
 #include "GUI/Model/Types/DoubleDescriptor.h"
-#include "GUI/Model/Types/SelectionProperty.h"
+#include "GUI/Model/Group/SelectionProperty.h"
 #include <QVariant>
 #include <QXmlStreamWriter> // used in every including file
 #include <heinz/Complex.h>
-- 
GitLab