Bläddra i källkod

Add class list documentation for boxing module

Patrick-Christopher Mattulat 6 månader sedan
förälder
incheckning
f5297a7879

+ 5 - 1
include/ls-std/boxing/Boolean.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-09
- * Changed:         2023-05-17
+ * Changed:         2024-05-24
  *
  * */
 
@@ -16,6 +16,10 @@
 #include <memory>
 #include <sstream>
 
+/*
+ * @class(name: 'Boolean', package: 'Boxing')
+ * */
+
 namespace ls::std::boxing
 {
   class LS_STD_DYNAMIC_GOAL Boolean : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing

+ 5 - 1
include/ls-std/boxing/Double.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2023-05-17
+ * Changed:         2024-05-24
  *
  * */
 
@@ -15,6 +15,10 @@
 #include <ls-std/os/dynamic-goal.hpp>
 #include <memory>
 
+/*
+ * @class(name: 'Double', package: 'Boxing')
+ * */
+
 namespace ls::std::boxing
 {
   class LS_STD_DYNAMIC_GOAL Double : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing

+ 5 - 1
include/ls-std/boxing/Float.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2023-05-17
+ * Changed:         2024-05-24
  *
  * */
 
@@ -16,6 +16,10 @@
 #include <memory>
 #include <string>
 
+/*
+ * @class(name: 'Float', package: 'Boxing')
+ * */
+
 namespace ls::std::boxing
 {
   class LS_STD_DYNAMIC_GOAL Float : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing

+ 5 - 1
include/ls-std/boxing/Integer.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-07
- * Changed:         2023-05-17
+ * Changed:         2024-05-24
  *
  * */
 
@@ -15,6 +15,10 @@
 #include <ls-std/os/dynamic-goal.hpp>
 #include <memory>
 
+/*
+ * @class(name: 'Integer', package: 'Boxing')
+ * */
+
 namespace ls::std::boxing
 {
   class LS_STD_DYNAMIC_GOAL Integer : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing

+ 5 - 1
include/ls-std/boxing/Long.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-17
- * Changed:         2023-05-17
+ * Changed:         2024-05-24
  *
  * */
 
@@ -16,6 +16,10 @@
 #include <ls-std/os/dynamic-goal.hpp>
 #include <memory>
 
+/*
+ * @class(name: 'Long', package: 'Boxing')
+ * */
+
 namespace ls::std::boxing
 {
   class LS_STD_DYNAMIC_GOAL Long : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing

+ 5 - 1
include/ls-std/boxing/String.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-14
- * Changed:         2023-05-17
+ * Changed:         2024-05-24
  *
  * */
 
@@ -19,6 +19,10 @@
 #include <string_view>
 #include <vector>
 
+/*
+ * @class(name: 'String', package: 'Boxing')
+ * */
+
 namespace ls::std::boxing
 {
   class LS_STD_DYNAMIC_GOAL String : public ls::std::core::Class, public ls::std::core::interface_type::IBoxing