Przeglądaj źródła

Add class documentation for encoding module

Patrick-Christopher Mattulat 2 miesięcy temu
rodzic
commit
ece8a6732c
2 zmienionych plików z 4 dodań i 1 usunięć
  1. 2 0
      doc/coline.html
  2. 2 1
      include/ls-std/encoding/Base64.hpp

+ 2 - 0
doc/coline.html

@@ -249,5 +249,7 @@ li.class_li
 <p class="default_text">This class represents a string and provides operations, like filling and searching.</p>
 <h3 id="boxing_long">boxing.Long</h3>
 <p class="default_text">This class represents the primitive datatype long and provides functionalities for arithmetic operations and string representation.</p>
+<h3 id="encoding_base64">encoding.Base64</h3>
+<p class="default_text">This class can encode and decode the Base64 format.</p>
 </body>
 </html>

+ 2 - 1
include/ls-std/encoding/Base64.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-01-03
- * Changed:         2024-09-09
+ * Changed:         2024-09-11
  *
  * */
 
@@ -20,6 +20,7 @@
 
 /*
  * @doc: class(name: 'Base64', package: 'encoding')
+ * @doc: encoding.Base64.description('This class can encode and decode the Base64 format.')
  * */
 
 namespace ls::std::encoding