Explorar o código

Rename dynamic goal definition to be library specific

Patrick-Christopher Mattulat hai 1 ano
pai
achega
674113921d
Modificáronse 43 ficheiros con 85 adicións e 85 borrados
  1. 1 1
      CMakeLists.txt
  2. 2 2
      include/ls_std/boxing/Boolean.hpp
  3. 2 2
      include/ls_std/boxing/Double.hpp
  4. 2 2
      include/ls_std/boxing/Float.hpp
  5. 2 2
      include/ls_std/boxing/Integer.hpp
  6. 2 2
      include/ls_std/boxing/Long.hpp
  7. 2 2
      include/ls_std/boxing/String.hpp
  8. 2 2
      include/ls_std/core/Class.hpp
  9. 2 2
      include/ls_std/core/Version.hpp
  10. 2 2
      include/ls_std/encoding/Base64.hpp
  11. 2 2
      include/ls_std/event/Event.hpp
  12. 2 2
      include/ls_std/event/EventHandler.hpp
  13. 2 2
      include/ls_std/event/EventManager.hpp
  14. 2 2
      include/ls_std/event/Narrator.hpp
  15. 2 2
      include/ls_std/event/serialization/SerializableJsonEvent.hpp
  16. 2 2
      include/ls_std/io/File.hpp
  17. 2 2
      include/ls_std/io/FileOutputStream.hpp
  18. 2 2
      include/ls_std/io/FilePathSeparator.hpp
  19. 2 2
      include/ls_std/io/FileReader.hpp
  20. 2 2
      include/ls_std/io/FileWriter.hpp
  21. 2 2
      include/ls_std/io/StandardOutputWriter.hpp
  22. 2 2
      include/ls_std/io/StorableFile.hpp
  23. 2 2
      include/ls_std/io/kv/KvDocument.hpp
  24. 2 2
      include/ls_std/io/kv/KvFileReader.hpp
  25. 2 2
      include/ls_std/io/kv/KvPair.hpp
  26. 2 2
      include/ls_std/io/kv/KvParser.hpp
  27. 2 2
      include/ls_std/io/logging/LogLevel.hpp
  28. 2 2
      include/ls_std/io/logging/Logger.hpp
  29. 2 2
      include/ls_std/io/xml/XmlAttribute.hpp
  30. 2 2
      include/ls_std/io/xml/XmlDeclaration.hpp
  31. 2 2
      include/ls_std/io/xml/XmlDocument.hpp
  32. 2 2
      include/ls_std/io/xml/XmlNode.hpp
  33. 2 2
      include/ls_std/io/xml/XmlParser.hpp
  34. 2 2
      include/ls_std/io/xml/XmlReader.hpp
  35. 2 2
      include/ls_std/logic/State.hpp
  36. 2 2
      include/ls_std/logic/StateConnection.hpp
  37. 2 2
      include/ls_std/logic/StateMachine.hpp
  38. 2 2
      include/ls_std/logic/serialization/SerializableJsonState.hpp
  39. 2 2
      include/ls_std/logic/serialization/SerializableJsonStateConnection.hpp
  40. 2 2
      include/ls_std/logic/serialization/SerializableJsonStateMachine.hpp
  41. 2 2
      include/ls_std/os/unix/unix_so_definitions.hpp
  42. 2 2
      include/ls_std/os/windows/msvc_dll_definitions.hpp
  43. 2 2
      include/ls_std/time/Date.hpp

+ 1 - 1
CMakeLists.txt

@@ -27,7 +27,7 @@ set(GOOGLE_TEST_MODULE googletest-1.11.0)
 # Options
 ##########################################################
 
-option(LS_STD_BUILD_WITH_TESTS "Build project with tests..." OFF)
+option(LS_STD_BUILD_WITH_TESTS "Build project with tests..." ON)
 option(LS_STD_BUILD_WITH_SUPPORTED_COMPILER "Build project with supported compiler only..." ON)
 option(LS_STD_BUILD_STATIC "Build ls_std static library..." ON)
 option(LS_STD_BUILD_SHARED "Build ls_std shared library..." OFF)

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -22,7 +22,7 @@ namespace ls
   {
     namespace boxing
     {
-      class DYNAMIC_GOAL Boolean : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
+      class LS_STD_DYNAMIC_GOAL Boolean : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -21,7 +21,7 @@ namespace ls
   {
     namespace boxing
     {
-      class DYNAMIC_GOAL Double : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
+      class LS_STD_DYNAMIC_GOAL Double : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -21,7 +21,7 @@ namespace ls
   {
     namespace boxing
     {
-      class DYNAMIC_GOAL Float : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
+      class LS_STD_DYNAMIC_GOAL Float : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -21,7 +21,7 @@ namespace ls
   {
     namespace boxing
     {
-      class DYNAMIC_GOAL Integer : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
+      class LS_STD_DYNAMIC_GOAL Integer : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -22,7 +22,7 @@ namespace ls
   {
     namespace boxing
     {
-      class DYNAMIC_GOAL Long : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
+      class LS_STD_DYNAMIC_GOAL Long : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -24,7 +24,7 @@ namespace ls
   {
     namespace boxing
     {
-      class DYNAMIC_GOAL String : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
+      class LS_STD_DYNAMIC_GOAL String : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -19,7 +19,7 @@ namespace ls
   {
     namespace core
     {
-      class DYNAMIC_GOAL Class
+      class LS_STD_DYNAMIC_GOAL Class
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -21,7 +21,7 @@ namespace ls
   {
     namespace core
     {
-      class DYNAMIC_GOAL Version : public ls::std::core::interface_type::ISerializable
+      class LS_STD_DYNAMIC_GOAL Version : public ls::std::core::interface_type::ISerializable
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -22,7 +22,7 @@ namespace ls
   {
     namespace encoding
     {
-      class DYNAMIC_GOAL Base64 : public ls::std::core::interface_type::IEncoding
+      class LS_STD_DYNAMIC_GOAL Base64 : public ls::std::core::interface_type::IEncoding
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -22,7 +22,7 @@ namespace ls
   {
     namespace event
     {
-      class DYNAMIC_GOAL Event : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL Event : public ls::std::core::Class
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -24,7 +24,7 @@ namespace ls
   {
     namespace event
     {
-      class DYNAMIC_GOAL EventHandler : public ls::std::event::Narrator
+      class LS_STD_DYNAMIC_GOAL EventHandler : public ls::std::event::Narrator
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -24,7 +24,7 @@ namespace ls
   {
     namespace event
     {
-      class DYNAMIC_GOAL EventManager : public ls::std::core::Class, public ls::std::core::interface_type::IEventSubscriber
+      class LS_STD_DYNAMIC_GOAL EventManager : public ls::std::core::Class, public ls::std::core::interface_type::IEventSubscriber
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -22,7 +22,7 @@ namespace ls
   {
     namespace event
     {
-      class DYNAMIC_GOAL Narrator : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL Narrator : public ls::std::core::Class
       {
         public:
 

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -23,7 +23,7 @@ namespace ls
   {
     namespace event
     {
-      class DYNAMIC_GOAL SerializableJsonEvent : public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
+      class LS_STD_DYNAMIC_GOAL SerializableJsonEvent : public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -36,7 +36,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL File : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL File : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -22,7 +22,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL FileOutputStream : public ls::std::core::Class, public ls::std::core::interface_type::IWriter
+      class LS_STD_DYNAMIC_GOAL FileOutputStream : public ls::std::core::Class, public ls::std::core::interface_type::IWriter
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -19,7 +19,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL FilePathSeparator
+      class LS_STD_DYNAMIC_GOAL FilePathSeparator
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -21,7 +21,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL FileReader : public ls::std::core::Class, public ls::std::core::interface_type::IReader
+      class LS_STD_DYNAMIC_GOAL FileReader : public ls::std::core::Class, public ls::std::core::interface_type::IReader
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -21,7 +21,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL FileWriter : public ls::std::core::Class, public ls::std::core::interface_type::IWriter
+      class LS_STD_DYNAMIC_GOAL FileWriter : public ls::std::core::Class, public ls::std::core::interface_type::IWriter
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -19,7 +19,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL StandardOutputWriter : public ls::std::core::interface_type::IWriter
+      class LS_STD_DYNAMIC_GOAL StandardOutputWriter : public ls::std::core::interface_type::IWriter
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -22,7 +22,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL StorableFile : public ls::std::core::interface_type::IStorable
+      class LS_STD_DYNAMIC_GOAL StorableFile : public ls::std::core::interface_type::IStorable
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -22,7 +22,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL KvDocument : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL KvDocument : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -23,7 +23,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL KvFileReader : public ls::std::core::Class, public ls::std::core::interface_type::IReader
+      class LS_STD_DYNAMIC_GOAL KvFileReader : public ls::std::core::Class, public ls::std::core::interface_type::IReader
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -20,7 +20,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL KvPair : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL KvPair : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -23,7 +23,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL KvParser : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL KvParser : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -21,7 +21,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL LogLevel : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL LogLevel : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -24,7 +24,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL Logger : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL Logger : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -20,7 +20,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL XmlAttribute : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL XmlAttribute : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -20,7 +20,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL XmlDeclaration : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL XmlDeclaration : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -22,7 +22,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL XmlDocument : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL XmlDocument : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -22,7 +22,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL XmlNode : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL XmlNode : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -24,7 +24,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL XmlParser : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL XmlParser : public ls::std::core::Class
       {
         public:
 

+ 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-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -25,7 +25,7 @@ namespace ls
   {
     namespace io
     {
-      class DYNAMIC_GOAL XmlReader : public ls::std::core::Class, public ls::std::core::interface_type::IReader
+      class LS_STD_DYNAMIC_GOAL XmlReader : public ls::std::core::Class, public ls::std::core::interface_type::IReader
       {
         public:
 

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-05
- * Changed:         2022-07-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -24,7 +24,7 @@ namespace ls
   {
     namespace logic
     {
-      class DYNAMIC_GOAL State : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL State : public ls::std::core::Class
       {
         public:
 

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-10
- * Changed:         2022-07-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -21,7 +21,7 @@ namespace ls
   {
     namespace logic
     {
-      class DYNAMIC_GOAL StateConnection : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL StateConnection : public ls::std::core::Class
       {
         public:
 

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-05
- * Changed:         2022-07-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -25,7 +25,7 @@ namespace ls
   {
     namespace logic
     {
-      class DYNAMIC_GOAL StateMachine : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL StateMachine : public ls::std::core::Class
       {
         public:
 

+ 2 - 2
include/ls_std/logic/serialization/SerializableJsonState.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-15
- * Changed:         2022-07-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -23,7 +23,7 @@ namespace ls
   {
     namespace logic
     {
-      class DYNAMIC_GOAL SerializableJsonState : public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
+      class LS_STD_DYNAMIC_GOAL SerializableJsonState : public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
       {
         public:
 

+ 2 - 2
include/ls_std/logic/serialization/SerializableJsonStateConnection.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-14
- * Changed:         2022-07-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -23,7 +23,7 @@ namespace ls
   {
     namespace logic
     {
-      class DYNAMIC_GOAL SerializableJsonStateConnection : public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
+      class LS_STD_DYNAMIC_GOAL SerializableJsonStateConnection : public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
       {
         public:
 

+ 2 - 2
include/ls_std/logic/serialization/SerializableJsonStateMachine.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-09-17
- * Changed:         2022-07-01
+ * Changed:         2022-07-03
  *
  * */
 
@@ -23,7 +23,7 @@ namespace ls
   {
     namespace logic
     {
-      class DYNAMIC_GOAL SerializableJsonStateMachine : public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
+      class LS_STD_DYNAMIC_GOAL SerializableJsonStateMachine : public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
       {
         public:
 

+ 2 - 2
include/ls_std/os/unix/unix_so_definitions.hpp

@@ -3,13 +3,13 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-06-29
- * Changed:         2022-06-29
+ * Changed:         2022-07-03
  *
  * */
 
 #ifndef LS_STD_UNIX_SO_DEFINITIONS_HPP
 #define LS_STD_UNIX_SO_DEFINITIONS_HPP
 
-#define DYNAMIC_GOAL
+#define LS_STD_DYNAMIC_GOAL
 
 #endif

+ 2 - 2
include/ls_std/os/windows/msvc_dll_definitions.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-06-26
- * Changed:         2022-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -12,6 +12,6 @@
 
 #define DLL_EXPORT        __declspec(dllexport)
 #define DLL_IMPORT        __declspec(dllimport)
-#define DYNAMIC_GOAL      DLL_EXPORT
+#define LS_STD_DYNAMIC_GOAL      DLL_EXPORT
 
 #endif

+ 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-06-29
+ * Changed:         2022-07-03
  *
  * */
 
@@ -20,7 +20,7 @@ namespace ls
   {
     namespace time
     {
-      class DYNAMIC_GOAL Date : public ls::std::core::Class
+      class LS_STD_DYNAMIC_GOAL Date : public ls::std::core::Class
       {
         public: