Browse Source

Move header files of base package

Patrick 3 years ago
parent
commit
c157ef65b6
40 changed files with 83 additions and 83 deletions
  1. 3 3
      CMakeLists.txt
  2. 1 1
      include/base/Class.hpp
  3. 1 1
      include/base/Types.hpp
  4. 3 3
      include/base/Version.hpp
  5. 2 2
      source/ls_std/base/Class.cpp
  6. 2 2
      source/ls_std/base/Version.cpp
  7. 2 2
      source/ls_std/boxing/Boolean.hpp
  8. 2 2
      source/ls_std/boxing/Double.hpp
  9. 2 2
      source/ls_std/boxing/Float.hpp
  10. 2 2
      source/ls_std/boxing/Integer.hpp
  11. 3 3
      source/ls_std/boxing/Long.hpp
  12. 2 2
      source/ls_std/boxing/String.hpp
  13. 2 2
      source/ls_std/io/File.hpp
  14. 2 2
      source/ls_std/io/FileOutputStream.hpp
  15. 2 2
      source/ls_std/io/FileReader.hpp
  16. 2 2
      source/ls_std/io/FileWriter.hpp
  17. 2 2
      source/ls_std/io/IReader.hpp
  18. 2 2
      source/ls_std/io/IStorable.hpp
  19. 2 2
      source/ls_std/io/IWriter.hpp
  20. 2 2
      source/ls_std/io/logging/LogLevel.hpp
  21. 2 2
      source/ls_std/io/logging/Logger.hpp
  22. 2 2
      source/ls_std/io/xml/XMLAttribute.hpp
  23. 2 2
      source/ls_std/io/xml/XMLDeclaration.hpp
  24. 2 2
      source/ls_std/io/xml/XMLDocument.hpp
  25. 2 2
      source/ls_std/io/xml/XMLNode.hpp
  26. 2 2
      source/ls_std/io/xml/XMLReader.hpp
  27. 2 2
      source/ls_std/logic/State.hpp
  28. 2 2
      source/ls_std/logic/StateConnection.hpp
  29. 2 2
      source/ls_std/logic/StateMachine.hpp
  30. 4 4
      source/ls_std/ls_std.hpp
  31. 2 2
      source/ls_std/serialization/ISerializable.hpp
  32. 2 2
      source/ls_std/serialization/json/boxing/SerializableJSONBoolean.hpp
  33. 2 2
      source/ls_std/serialization/json/boxing/SerializableJSONDouble.hpp
  34. 2 2
      source/ls_std/serialization/json/boxing/SerializableJSONFloat.hpp
  35. 2 2
      source/ls_std/serialization/json/boxing/SerializableJSONInteger.hpp
  36. 2 2
      source/ls_std/serialization/json/boxing/SerializableJSONLong.hpp
  37. 2 2
      source/ls_std/serialization/json/logic/SerializableJSONState.hpp
  38. 2 2
      source/ls_std/serialization/json/logic/SerializableJSONStateConnection.hpp
  39. 2 2
      source/ls_std/serialization/json/logic/SerializableJSONStateMachine.hpp
  40. 2 2
      source/ls_std/time/Date.hpp

+ 3 - 3
CMakeLists.txt

@@ -39,12 +39,12 @@ add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/test/lib/googletest-1.8.1)
 
 set(SOURCE_FILES
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/boxing/Integer.hpp
-        ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/base/Class.hpp
+        ${CMAKE_CURRENT_SOURCE_DIR}/include/base/Class.hpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/base/Class.cpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/boxing/Integer.cpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/boxing/IBoxing.hpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/exception/IllegalArithmeticOperationException.hpp
-        ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/base/Types.hpp
+        ${CMAKE_CURRENT_SOURCE_DIR}/include/base/Types.hpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/boxing/Boolean.hpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/boxing/Boolean.cpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/exception/IllegalArgumentException.hpp
@@ -115,7 +115,7 @@ set(SOURCE_FILES
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/io/xml/XMLNode.cpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/io/xml/XMLDocument.hpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/io/xml/XMLDeclaration.hpp
-        ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/base/Version.hpp
+        ${CMAKE_CURRENT_SOURCE_DIR}/include/base/Version.hpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/base/Version.cpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/io/xml/XMLDeclaration.cpp
         ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_std/io/xml/XMLDocument.cpp

+ 1 - 1
source/ls_std/base/Class.hpp → include/base/Class.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-07
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 

+ 1 - 1
source/ls_std/base/Types.hpp → include/base/Types.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-07
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 

+ 3 - 3
source/ls_std/base/Version.hpp → include/base/Version.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-27
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,8 +11,8 @@
 #define LS_STD_VERSION_HPP
 
 #include "Class.hpp"
-#include "../serialization/ISerializable.hpp"
-#include "../base/Types.hpp"
+#include "ls_std/serialization/ISerializable.hpp"
+#include "Types.hpp"
 
 namespace ls_std {
   class Version : public ISerializable {

+ 2 - 2
source/ls_std/base/Class.cpp

@@ -3,11 +3,11 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-07
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
-#include "Class.hpp"
+#include "../../../include/base/Class.hpp"
 
 ls_std::Class::Class(std::string _name):
 name(std::move(_name))

+ 2 - 2
source/ls_std/base/Version.cpp

@@ -3,12 +3,12 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-28
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #include <regex>
-#include "Version.hpp"
+#include "../../../include/base/Version.hpp"
 
 ls_std::Version::Version(version_type _majorVersion, version_type _minorVersion, version_type _patchVersion) :
 majorVersion(_majorVersion),

+ 2 - 2
source/ls_std/boxing/Boolean.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-09
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_BOOLEAN_HPP
 
 #include <memory>
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "IBoxing.hpp"
 #include "../serialization/ISerializable.hpp"
 #include "../io/IStorable.hpp"

+ 2 - 2
source/ls_std/boxing/Double.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_DOUBLE_HPP
 
 #include <memory>
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "IBoxing.hpp"
 #include "../serialization/ISerializable.hpp"
 #include "../io/IStorable.hpp"

+ 2 - 2
source/ls_std/boxing/Float.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_FLOAT_HPP
 
 #include <memory>
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "IBoxing.hpp"
 #include "../serialization/ISerializable.hpp"
 #include "../io/IStorable.hpp"

+ 2 - 2
source/ls_std/boxing/Integer.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-07
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_INTEGER_HPP
 
 #include <memory>
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "IBoxing.hpp"
 #include "../serialization/ISerializable.hpp"
 #include "../io/IStorable.hpp"

+ 3 - 3
source/ls_std/boxing/Long.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-17
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,9 +11,9 @@
 #define LS_STD_LONG_HPP
 
 #include <memory>
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "IBoxing.hpp"
-#include "../base/Types.hpp"
+#include "../../../include/base/Types.hpp"
 #include "../serialization/ISerializable.hpp"
 #include "../io/IStorable.hpp"
 

+ 2 - 2
source/ls_std/boxing/String.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_STRING_HPP
 
 #include "IBoxing.hpp"
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "../serialization/ISerializable.hpp"
 #include "../io/IStorable.hpp"
 #include <string>

+ 2 - 2
source/ls_std/io/File.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-15
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_FILE_HPP
 #define LS_STD_FILE_HPP
 
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include <string>
 #include <vector>
 #include <list>

+ 2 - 2
source/ls_std/io/FileOutputStream.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-20
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_FILE_OUTPUT_STREAM_HPP
 #define LS_STD_FILE_OUTPUT_STREAM_HPP
 
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "File.hpp"
 #include "IWriter.hpp"
 #include <fstream>

+ 2 - 2
source/ls_std/io/FileReader.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-17
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_FILE_READER_HPP
 #define LS_STD_FILE_READER_HPP
 
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "File.hpp"
 #include "IReader.hpp"
 

+ 2 - 2
source/ls_std/io/FileWriter.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-17
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_FILE_WRITER_HPP
 #define LS_STD_FILE_WRITER_HPP
 
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "IWriter.hpp"
 #include "File.hpp"
 

+ 2 - 2
source/ls_std/io/IReader.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-17
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_I_READER_HPP
 #define LS_STD_I_READER_HPP
 
-#include "../base/Types.hpp"
+#include "../../../include/base/Types.hpp"
 
 namespace ls_std {
   class IReader {

+ 2 - 2
source/ls_std/io/IStorable.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-19
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_I_STORABLE_HPP
 #define LS_STD_I_STORABLE_HPP
 
-#include "../base/Types.hpp"
+#include "../../../include/base/Types.hpp"
 
 namespace ls_std {
   class IStorable {

+ 2 - 2
source/ls_std/io/IWriter.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-17
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_I_WRITER_HPP
 
 #include <vector>
-#include "../base/Types.hpp"
+#include "../../../include/base/Types.hpp"
 
 namespace ls_std {
   class IWriter {

+ 2 - 2
source/ls_std/io/logging/LogLevel.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-20
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_LOG_LEVEL_HPP
 
 #include <unordered_map>
-#include "../../base/Class.hpp"
+#include "../../../../include/base/Class.hpp"
 #include "LogLevelValue.hpp"
 
 namespace ls_std {

+ 2 - 2
source/ls_std/io/logging/Logger.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-20
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_LOGGER_HPP
 #define LS_STD_LOGGER_HPP
 
-#include "../../base/Class.hpp"
+#include "../../../../include/base/Class.hpp"
 #include "LogLevel.hpp"
 #include "../IWriter.hpp"
 #include "../File.hpp"

+ 2 - 2
source/ls_std/io/xml/XMLAttribute.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-23
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_XML_ATTRIBUTE_HPP
 #define LS_STD_XML_ATTRIBUTE_HPP
 
-#include "../../base/Class.hpp"
+#include "../../../../include/base/Class.hpp"
 #include <string>
 
 namespace ls_std {

+ 2 - 2
source/ls_std/io/xml/XMLDeclaration.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-27
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_XML_DECLARATION_HPP
 #define LS_STD_XML_DECLARATION_HPP
 
-#include "../../base/Class.hpp"
+#include "../../../../include/base/Class.hpp"
 #include "XMLAttribute.hpp"
 
 namespace ls_std {

+ 2 - 2
source/ls_std/io/xml/XMLDocument.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-27
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_XML_DOCUMENT_HPP
 
 #include <memory>
-#include "../../base/Class.hpp"
+#include "../../../../include/base/Class.hpp"
 #include "XMLNode.hpp"
 #include "XMLDeclaration.hpp"
 

+ 2 - 2
source/ls_std/io/xml/XMLNode.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-24
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -12,7 +12,7 @@
 
 #include <list>
 #include <memory>
-#include "../../base/Class.hpp"
+#include "../../../../include/base/Class.hpp"
 #include "XMLAttribute.hpp"
 
 namespace ls_std {

+ 2 - 2
source/ls_std/io/xml/XMLReader.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-10-08
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_XML_READER_HPP
 #define LS_STD_XML_READER_HPP
 
-#include "../../base/Class.hpp"
+#include "../../../../include/base/Class.hpp"
 #include "XMLDocument.hpp"
 #include "../IReader.hpp"
 #include "../File.hpp"

+ 2 - 2
source/ls_std/logic/State.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-05
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -12,7 +12,7 @@
 
 #include <memory>
 #include <unordered_map>
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "StateMachineTypes.hpp"
 #include "StateConnection.hpp"
 

+ 2 - 2
source/ls_std/logic/StateConnection.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-10
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_STATE_CONNECTION_HPP
 
 #include <memory>
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "StateMachineTypes.hpp"
 
 namespace ls_std {

+ 2 - 2
source/ls_std/logic/StateMachine.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-05
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -14,7 +14,7 @@
 #include <unordered_map>
 #include <string>
 #include <vector>
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include "State.hpp"
 #include "StateMachineTypes.hpp"
 

+ 4 - 4
source/ls_std/ls_std.hpp

@@ -3,16 +3,16 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-10-29
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_LS_STD_HPP
 #define LS_STD_LS_STD_HPP
 
-#include "base/Class.hpp"
-#include "base/Types.hpp"
-#include "base/Version.hpp"
+#include "../../include/base/Class.hpp"
+#include "../../include/base/Types.hpp"
+#include "../../include/base/Version.hpp"
 
 #include "boxing/IBoxing.hpp"
 #include "boxing/Boolean.hpp"

+ 2 - 2
source/ls_std/serialization/ISerializable.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-21
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_SERIALIZABLE_HPP
 #define LS_STD_SERIALIZABLE_HPP
 
-#include "../base/Types.hpp"
+#include "../../../include/base/Types.hpp"
 
 namespace ls_std {
   class ISerializable {

+ 2 - 2
source/ls_std/serialization/json/boxing/SerializableJSONBoolean.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-04
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -12,7 +12,7 @@
 
 #include <memory>
 #include <json.hpp>
-#include "../../../base/Class.hpp"
+#include "../../../../../include/base/Class.hpp"
 #include "../../ISerializable.hpp"
 #include "../../../boxing/Boolean.hpp"
 

+ 2 - 2
source/ls_std/serialization/json/boxing/SerializableJSONDouble.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-04
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -12,7 +12,7 @@
 
 #include <memory>
 #include <json.hpp>
-#include "../../../base/Class.hpp"
+#include "../../../../../include/base/Class.hpp"
 #include "../../ISerializable.hpp"
 #include "../../../boxing/Double.hpp"
 

+ 2 - 2
source/ls_std/serialization/json/boxing/SerializableJSONFloat.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-04
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
@@ -12,7 +12,7 @@
 
 #include <memory>
 #include <json.hpp>
-#include "../../../base/Class.hpp"
+#include "../../../../../include/base/Class.hpp"
 #include "../../ISerializable.hpp"
 #include "../../../boxing/Float.hpp"
 

+ 2 - 2
source/ls_std/serialization/json/boxing/SerializableJSONInteger.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-21
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_SERIALIZABLE_JSON_INTEGER_HPP
 #define LS_STD_SERIALIZABLE_JSON_INTEGER_HPP
 
-#include "../../../base/Class.hpp"
+#include "../../../../../include/base/Class.hpp"
 #include "../../ISerializable.hpp"
 #include "../../../boxing/Integer.hpp"
 #include <json.hpp>

+ 2 - 2
source/ls_std/serialization/json/boxing/SerializableJSONLong.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-25
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_SERIALIZABLE_JSON_LONG_HPP
 #define LS_STD_SERIALIZABLE_JSON_LONG_HPP
 
-#include "../../../base/Class.hpp"
+#include "../../../../../include/base/Class.hpp"
 #include "../../ISerializable.hpp"
 #include "../../../boxing/Long.hpp"
 #include <json.hpp>

+ 2 - 2
source/ls_std/serialization/json/logic/SerializableJSONState.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-15
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_SERIALIZABLE_JSON_STATE_HPP
 #define LS_STD_SERIALIZABLE_JSON_STATE_HPP
 
-#include "../../../base/Class.hpp"
+#include "../../../../../include/base/Class.hpp"
 #include "../../ISerializable.hpp"
 #include "../../../logic/State.hpp"
 #include <memory>

+ 2 - 2
source/ls_std/serialization/json/logic/SerializableJSONStateConnection.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-14
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_SERIALIZABLE_JSON_STATE_CONNECTION_HPP
 #define LS_STD_SERIALIZABLE_JSON_STATE_CONNECTION_HPP
 
-#include "../../../base/Class.hpp"
+#include "../../../../../include/base/Class.hpp"
 #include "../../ISerializable.hpp"
 #include "../../../logic/StateConnection.hpp"
 #include <memory>

+ 2 - 2
source/ls_std/serialization/json/logic/SerializableJSONStateMachine.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-17
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_SERIALIZABLE_JSON_STATE_MACHINE_HPP
 #define LS_STD_SERIALIZABLE_JSON_STATE_MACHINE_HPP
 
-#include "../../../base/Class.hpp"
+#include "../../../../../include/base/Class.hpp"
 #include "../../ISerializable.hpp"
 #include "../../../logic/StateMachine.hpp"
 #include <memory>

+ 2 - 2
source/ls_std/time/Date.hpp

@@ -3,14 +3,14 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2020-10-29
+ * Changed:         2020-11-06
  *
  * */
 
 #ifndef LS_STD_DATE_HPP
 #define LS_STD_DATE_HPP
 
-#include "../base/Class.hpp"
+#include "../../../include/base/Class.hpp"
 #include <ctime>
 
 namespace ls_std {