Parcourir la source

Split header and source files for encoding module

Patrick-Christopher Mattulat il y a 2 ans
Parent
commit
19ae17e321
2 fichiers modifiés avec 8 ajouts et 4 suppressions
  1. 3 3
      include/ls-std/encoding/Base64.hpp
  2. 5 1
      source/ls-std/encoding/Base64.cpp

+ 3 - 3
include/ls-std/encoding/Base64.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-01-03
- * Changed:         2023-02-03
+ * Changed:         2023-02-04
  *
  * */
 
@@ -22,8 +22,8 @@ namespace ls::std::encoding
   {
     public:
 
-      Base64() = default;
-      ~Base64() = default;
+      Base64();
+      ~Base64();
 
       // implementation
 

+ 5 - 1
source/ls-std/encoding/Base64.cpp

@@ -3,13 +3,17 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-01-03
- * Changed:         2023-02-03
+ * Changed:         2023-02-04
  *
  * */
 
 #include <bitset>
 #include <ls-std/encoding/Base64.hpp>
 
+ls::std::encoding::Base64::Base64() = default;
+
+ls::std::encoding::Base64::~Base64() = default;
+
 ::std::string ls::std::encoding::Base64::encode(const ::std::string &_sequence)
 {
   ::std::string encodedString{};