From 03b2b45ca35c69e19c020b9c9bb490152d8da86a Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Sun, 19 Apr 2020 17:03:54 +0200 Subject: [PATCH] kiwi code moved to subdirectory --- playground/anchors/AnchorBox.cpp | 8 ++++---- playground/anchors/anchors.pro | 18 +++++++++--------- playground/anchors/{ => kiwi}/Constraint.cpp | 0 playground/anchors/{ => kiwi}/Constraint.h | 0 playground/anchors/{ => kiwi}/Expression.cpp | 0 playground/anchors/{ => kiwi}/Expression.h | 0 playground/anchors/{ => kiwi}/Solver.cpp | 0 playground/anchors/{ => kiwi}/Solver.h | 0 playground/anchors/{ => kiwi}/Strength.h | 0 playground/anchors/{ => kiwi}/Term.h | 0 playground/anchors/{ => kiwi}/Variable.h | 0 11 files changed, 13 insertions(+), 13 deletions(-) rename playground/anchors/{ => kiwi}/Constraint.cpp (100%) rename playground/anchors/{ => kiwi}/Constraint.h (100%) rename playground/anchors/{ => kiwi}/Expression.cpp (100%) rename playground/anchors/{ => kiwi}/Expression.h (100%) rename playground/anchors/{ => kiwi}/Solver.cpp (100%) rename playground/anchors/{ => kiwi}/Solver.h (100%) rename playground/anchors/{ => kiwi}/Strength.h (100%) rename playground/anchors/{ => kiwi}/Term.h (100%) rename playground/anchors/{ => kiwi}/Variable.h (100%) diff --git a/playground/anchors/AnchorBox.cpp b/playground/anchors/AnchorBox.cpp index 1f385794..50c8cba5 100644 --- a/playground/anchors/AnchorBox.cpp +++ b/playground/anchors/AnchorBox.cpp @@ -5,10 +5,10 @@ #include "AnchorBox.h" -#include "Solver.h" -#include "Constraint.h" -#include "Variable.h" -#include "Expression.h" +#include "kiwi/Solver.h" +#include "kiwi/Constraint.h" +#include "kiwi/Variable.h" +#include "kiwi/Expression.h" #include #include diff --git a/playground/anchors/anchors.pro b/playground/anchors/anchors.pro index d5e25ce4..d56d699f 100644 --- a/playground/anchors/anchors.pro +++ b/playground/anchors/anchors.pro @@ -1,17 +1,17 @@ CONFIG += qskexample HEADERS += \ - Constraint.h \ - Expression.h \ - Solver.h \ - Strength.h \ - Term.h \ - Variable.h + kiwi/Constraint.h \ + kiwi/Expression.h \ + kiwi/Solver.h \ + kiwi/Strength.h \ + kiwi/Term.h \ + kiwi/Variable.h SOURCES += \ - Expression.cpp \ - Constraint.cpp \ - Solver.cpp + kiwi/Expression.cpp \ + kiwi/Constraint.cpp \ + kiwi/Solver.cpp HEADERS += \ AnchorBox.h diff --git a/playground/anchors/Constraint.cpp b/playground/anchors/kiwi/Constraint.cpp similarity index 100% rename from playground/anchors/Constraint.cpp rename to playground/anchors/kiwi/Constraint.cpp diff --git a/playground/anchors/Constraint.h b/playground/anchors/kiwi/Constraint.h similarity index 100% rename from playground/anchors/Constraint.h rename to playground/anchors/kiwi/Constraint.h diff --git a/playground/anchors/Expression.cpp b/playground/anchors/kiwi/Expression.cpp similarity index 100% rename from playground/anchors/Expression.cpp rename to playground/anchors/kiwi/Expression.cpp diff --git a/playground/anchors/Expression.h b/playground/anchors/kiwi/Expression.h similarity index 100% rename from playground/anchors/Expression.h rename to playground/anchors/kiwi/Expression.h diff --git a/playground/anchors/Solver.cpp b/playground/anchors/kiwi/Solver.cpp similarity index 100% rename from playground/anchors/Solver.cpp rename to playground/anchors/kiwi/Solver.cpp diff --git a/playground/anchors/Solver.h b/playground/anchors/kiwi/Solver.h similarity index 100% rename from playground/anchors/Solver.h rename to playground/anchors/kiwi/Solver.h diff --git a/playground/anchors/Strength.h b/playground/anchors/kiwi/Strength.h similarity index 100% rename from playground/anchors/Strength.h rename to playground/anchors/kiwi/Strength.h diff --git a/playground/anchors/Term.h b/playground/anchors/kiwi/Term.h similarity index 100% rename from playground/anchors/Term.h rename to playground/anchors/kiwi/Term.h diff --git a/playground/anchors/Variable.h b/playground/anchors/kiwi/Variable.h similarity index 100% rename from playground/anchors/Variable.h rename to playground/anchors/kiwi/Variable.h