From 8996fc96c2fcd84cf368c4779a8163e3bdaf31d8 Mon Sep 17 00:00:00 2001
From: Tomas Jakubec <jakubto1@fjfi.cvut.cz>
Date: Mon, 7 Oct 2019 18:00:52 +0200
Subject: [PATCH] file renaming

---
 Unstructured_mesh/MeshDataContainer.h      | 2 +-
 Unstructured_mesh/Unstructured_mesh.pro    | 6 +++---
 Unstructured_mesh/main.cpp                 | 2 +-
 debug/{consolelogger.h => ConsoleLogger.h} | 0
 debug/{debug.h => Debug.h}                 | 4 ++--
 debug/{htmllogger.h => HTMLLogger.h}       | 0
 debug/debug.cpp                            | 2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)
 rename debug/{consolelogger.h => ConsoleLogger.h} (100%)
 rename debug/{debug.h => Debug.h} (98%)
 rename debug/{htmllogger.h => HTMLLogger.h} (100%)

diff --git a/Unstructured_mesh/MeshDataContainer.h b/Unstructured_mesh/MeshDataContainer.h
index bfcc5c9..f71c853 100644
--- a/Unstructured_mesh/MeshDataContainer.h
+++ b/Unstructured_mesh/MeshDataContainer.h
@@ -2,7 +2,7 @@
 #define MESHDATACONTAINER_H
 
 #include "MeshElement.h"
-#include "../debug/debug.h"
+#include "../debug/Debug.h"
 
 
 /**
diff --git a/Unstructured_mesh/Unstructured_mesh.pro b/Unstructured_mesh/Unstructured_mesh.pro
index 8f27927..dc85b95 100644
--- a/Unstructured_mesh/Unstructured_mesh.pro
+++ b/Unstructured_mesh/Unstructured_mesh.pro
@@ -8,8 +8,10 @@ SOURCES += \
     ../debug/debug.cpp
 
 HEADERS += \
+    ../debug/ConsoleLogger.h \
+    ../debug/Debug.h \
+    ../debug/HTMLLogger.h \
     ../debug/VariableExport.h \
-    ../debug/consolelogger.h \
     CellBoundaryConnection.h \
     CellConnection.h \
     ComputationalySignificantElement.h \
@@ -23,8 +25,6 @@ HEADERS += \
     UnstructedMeshDefine.h \
     UnstructuredMesh.h \
     VTKMeshReader.h \
-    ../debug/debug.h \
-    ../debug/htmllogger.h \
     VTKMeshWriter.h \
     Vector.h \
     Vertex.h
diff --git a/Unstructured_mesh/main.cpp b/Unstructured_mesh/main.cpp
index 2e62ca8..43c3776 100644
--- a/Unstructured_mesh/main.cpp
+++ b/Unstructured_mesh/main.cpp
@@ -1,6 +1,6 @@
 #include <iostream>
 //#define UNDEBUG
-#include "../debug/debug.h"
+#include "../debug/Debug.h"
 #include "UnstructuredMesh.h"
 #include "MeshFunctions.h"
 #include "VTKMeshReader.h"
diff --git a/debug/consolelogger.h b/debug/ConsoleLogger.h
similarity index 100%
rename from debug/consolelogger.h
rename to debug/ConsoleLogger.h
diff --git a/debug/debug.h b/debug/Debug.h
similarity index 98%
rename from debug/debug.h
rename to debug/Debug.h
index eb7fb26..a05969c 100644
--- a/debug/debug.h
+++ b/debug/Debug.h
@@ -74,8 +74,8 @@
 
 #ifndef UNDEBUG
 #include <iostream>
-#include "htmllogger.h"
-#include "consolelogger.h"
+#include "HTMLLogger.h"
+#include "ConsoleLogger.h"
 #include <stdexcept>
 /*
 ** Macros intended for sending
diff --git a/debug/htmllogger.h b/debug/HTMLLogger.h
similarity index 100%
rename from debug/htmllogger.h
rename to debug/HTMLLogger.h
diff --git a/debug/debug.cpp b/debug/debug.cpp
index 9cf3054..9f8a7b1 100644
--- a/debug/debug.cpp
+++ b/debug/debug.cpp
@@ -1,3 +1,3 @@
-#include "debug.h"
+#include "Debug.h"
 // declaring extern variable
 HtmlLogger HDBGLog("DBG.html");
-- 
GitLab