Browse Source

LSSTD-1: Move goals definition to proper location

Patrick-Christopher Mattulat 2 years ago
parent
commit
cf9f0cf5a4
37 changed files with 73 additions and 73 deletions
  1. 2 2
      include/ls_std/boxing/Boolean.hpp
  2. 2 2
      include/ls_std/boxing/Double.hpp
  3. 2 2
      include/ls_std/boxing/Float.hpp
  4. 2 2
      include/ls_std/boxing/Integer.hpp
  5. 2 2
      include/ls_std/boxing/Long.hpp
  6. 2 2
      include/ls_std/boxing/String.hpp
  7. 2 2
      include/ls_std/core/Class.hpp
  8. 2 2
      include/ls_std/core/Version.hpp
  9. 2 2
      include/ls_std/encoding/Base64.hpp
  10. 2 2
      include/ls_std/event/Event.hpp
  11. 2 2
      include/ls_std/event/EventHandler.hpp
  12. 2 2
      include/ls_std/event/EventManager.hpp
  13. 2 2
      include/ls_std/event/Narrator.hpp
  14. 2 2
      include/ls_std/event/serialization/SerializableJsonEvent.hpp
  15. 2 2
      include/ls_std/io/File.hpp
  16. 2 2
      include/ls_std/io/FileOutputStream.hpp
  17. 2 2
      include/ls_std/io/FilePathSeparator.hpp
  18. 2 2
      include/ls_std/io/FileReader.hpp
  19. 2 2
      include/ls_std/io/FileWriter.hpp
  20. 2 2
      include/ls_std/io/StandardOutputWriter.hpp
  21. 2 2
      include/ls_std/io/StorableFile.hpp
  22. 2 2
      include/ls_std/io/kv/KvDocument.hpp
  23. 2 2
      include/ls_std/io/kv/KvFileReader.hpp
  24. 2 2
      include/ls_std/io/kv/KvPair.hpp
  25. 2 2
      include/ls_std/io/kv/KvParser.hpp
  26. 2 2
      include/ls_std/io/logging/LogLevel.hpp
  27. 2 2
      include/ls_std/io/logging/Logger.hpp
  28. 2 2
      include/ls_std/io/xml/XmlAttribute.hpp
  29. 2 2
      include/ls_std/io/xml/XmlDeclaration.hpp
  30. 2 2
      include/ls_std/io/xml/XmlDocument.hpp
  31. 2 2
      include/ls_std/io/xml/XmlNode.hpp
  32. 2 2
      include/ls_std/io/xml/XmlParser.hpp
  33. 2 2
      include/ls_std/io/xml/XmlReader.hpp
  34. 3 3
      include/ls_std/os/library/goals/dynamic_goal.hpp
  35. 1 1
      include/ls_std/os/library/goals/unix/unix_so_definitions.hpp
  36. 1 1
      include/ls_std/os/library/goals/windows/msvc_dll_definitions.hpp
  37. 2 2
      include/ls_std/time/Date.hpp

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-09
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -14,7 +14,7 @@
 #include <sstream>
 #include <ls_std/core/Class.hpp>
 #include <ls_std/core/interface/IBoxing.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::boxing
 {

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -13,7 +13,7 @@
 #include <memory>
 #include <ls_std/core/Class.hpp>
 #include <ls_std/core/interface/IBoxing.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::boxing
 {

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -13,7 +13,7 @@
 #include <memory>
 #include <ls_std/core/Class.hpp>
 #include <ls_std/core/interface/IBoxing.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::boxing
 {

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-07
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -13,7 +13,7 @@
 #include <memory>
 #include <ls_std/core/Class.hpp>
 #include <ls_std/core/interface/IBoxing.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::boxing
 {

+ 2 - 2
include/ls_std/boxing/Long.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-17
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -14,7 +14,7 @@
 #include <ls_std/core/Class.hpp>
 #include <ls_std/core/interface/IBoxing.hpp>
 #include <ls_std/core/types/Types.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::boxing
 {

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -16,7 +16,7 @@
 #include <string>
 #include <memory>
 #include <vector>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::boxing
 {

+ 2 - 2
include/ls_std/core/Class.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-07
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_CLASS_HPP
 
 #include <string>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::core
 {

+ 2 - 2
include/ls_std/core/Version.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-27
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -13,7 +13,7 @@
 #include "Class.hpp"
 #include <ls_std/core/interface/ISerializable.hpp>
 #include <ls_std/core/types/Types.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::core
 {

+ 2 - 2
include/ls_std/encoding/Base64.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-01-03
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -14,7 +14,7 @@
 #include <bitset>
 #include <vector>
 #include <unordered_map>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::encoding
 {

+ 2 - 2
include/ls_std/event/Event.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-11-26
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -14,7 +14,7 @@
 #include <ls_std/core/interface/ISerializable.hpp>
 #include <memory>
 #include <ls_std/core/types/EventTypes.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::event
 {

+ 2 - 2
include/ls_std/event/EventHandler.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-11-27
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -14,7 +14,7 @@
 #include <list>
 #include <memory>
 #include <ls_std/core/interface/IListener.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 #include "Event.hpp"
 #include "Narrator.hpp"
 

+ 2 - 2
include/ls_std/event/EventManager.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-11-27
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -16,7 +16,7 @@
 #include <memory>
 #include "EventHandler.hpp"
 #include <ls_std/core/interface/IEventSubscriber.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::event
 {

+ 2 - 2
include/ls_std/event/Narrator.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-11-14
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -12,7 +12,7 @@
 
 #include <ls_std/core/Class.hpp>
 #include <ls_std/core/interface/IListener.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 #include <list>
 #include <memory>
 

+ 2 - 2
include/ls_std/event/serialization/SerializableJsonEvent.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-12-07
- * Changed:         2022-07-14
+ * Changed:         2022-10-23
  *
  * */
 
@@ -15,7 +15,7 @@
 #include <ls_std/event/Event.hpp>
 #include <memory>
 #include <ls_std/core/types/Types.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::event
 {

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-15
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -16,7 +16,7 @@
 #include <list>
 #include <ctime>
 #include <regex>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 #if defined(unix) || defined(__APPLE__)
 

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-20
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -14,7 +14,7 @@
 #include "File.hpp"
 #include <ls_std/core/interface/IWriter.hpp>
 #include <fstream>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/FilePathSeparator.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-15
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -11,7 +11,7 @@
 #define FILE_PATH_SEPARATOR_HPP
 
 #include <string>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-17
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -13,7 +13,7 @@
 #include <ls_std/core/Class.hpp>
 #include "File.hpp"
 #include <ls_std/core/interface/IReader.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-17
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -13,7 +13,7 @@
 #include <ls_std/core/Class.hpp>
 #include <ls_std/core/interface/IWriter.hpp>
 #include "File.hpp"
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/StandardOutputWriter.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-11-06
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_STANDARD_OUTPUT_WRITER_HPP
 
 #include <ls_std/core/interface/IWriter.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/StorableFile.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-19
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -14,7 +14,7 @@
 #include <memory>
 #include <ls_std/core/interface/IStorable.hpp>
 #include "File.hpp"
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/kv/KvDocument.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-12-25
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -14,7 +14,7 @@
 #include "KvPair.hpp"
 #include <ls_std/core/types/KvTypes.hpp>
 #include <map>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/kv/KvFileReader.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-12-25
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -15,7 +15,7 @@
 #include <ls_std/io/kv/KvDocument.hpp>
 #include <ls_std/io/File.hpp>
 #include <memory>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/kv/KvPair.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-12-25
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -12,7 +12,7 @@
 
 #include <ls_std/core/Class.hpp>
 #include "ls_std/core/types/KvTypes.hpp"
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/kv/KvParser.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-12-25
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -15,7 +15,7 @@
 #include "KvDocument.hpp"
 #include "KvParseParameter.hpp"
 #include <memory>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-20
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -13,7 +13,7 @@
 #include <unordered_map>
 #include <ls_std/core/Class.hpp>
 #include "LogLevelValue.hpp"
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-20
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -16,7 +16,7 @@
 #include <ls_std/io/File.hpp>
 #include <ls_std/io/FileOutputStream.hpp>
 #include <string>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/xml/XmlAttribute.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-23
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -12,7 +12,7 @@
 
 #include <ls_std/core/Class.hpp>
 #include <string>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/xml/XmlDeclaration.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-27
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -12,7 +12,7 @@
 
 #include <ls_std/core/Class.hpp>
 #include "XmlAttribute.hpp"
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/xml/XmlDocument.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-27
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -14,7 +14,7 @@
 #include <ls_std/core/Class.hpp>
 #include "XmlNode.hpp"
 #include "XmlDeclaration.hpp"
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/xml/XmlNode.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-24
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -14,7 +14,7 @@
 #include <memory>
 #include <ls_std/core/Class.hpp>
 #include "XmlAttribute.hpp"
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/xml/XmlParser.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-11-25
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -16,7 +16,7 @@
 #include "XmlParseMode.hpp"
 #include "XmlParseParameter.hpp"
 #include <list>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 2 - 2
include/ls_std/io/xml/XmlReader.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-10-08
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -17,7 +17,7 @@
 #include "XmlParseMode.hpp"
 #include "XmlParseParameter.hpp"
 #include <list>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 
 namespace ls::std::io
 {

+ 3 - 3
include/ls_std/os/dynamic_goal.hpp → include/ls_std/os/library/goals/dynamic_goal.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-06-29
- * Changed:         2022-07-17
+ * Changed:         2022-10-23
  *
  * */
 
@@ -11,10 +11,10 @@
 #define LS_STD_DYNAMIC_GOAL_HPP
 
 #if defined(_WIN32) && defined(_MSC_VER)
-#include <ls_std/os/windows/msvc_dll_definitions.hpp>
+#include <ls_std/os/library/goals/windows/msvc_dll_definitions.hpp>
 #endif
 #if defined(unix) || defined(__APPLE__) || defined(_WIN32) && defined(__GNUC__)
-#include <ls_std/os/unix/unix_so_definitions.hpp>
+#include <ls_std/os/library/goals/unix/unix_so_definitions.hpp>
 #endif
 
 #endif

+ 1 - 1
include/ls_std/os/unix/unix_so_definitions.hpp → include/ls_std/os/library/goals/unix/unix_so_definitions.hpp

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

+ 1 - 1
include/ls_std/os/windows/msvc_dll_definitions.hpp → include/ls_std/os/library/goals/windows/msvc_dll_definitions.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-06-26
- * Changed:         2022-07-15
+ * Changed:         2022-10-23
  *
  * */
 

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2022-07-03
+ * Changed:         2022-10-23
  *
  * */
 
@@ -11,7 +11,7 @@
 #define LS_STD_DATE_HPP
 
 #include <ls_std/core/Class.hpp>
-#include <ls_std/os/dynamic_goal.hpp>
+#include <ls_std/os/library/goals/dynamic_goal.hpp>
 #include <ctime>
 
 namespace ls::std::time