소스 검색

Rename interface namespace in core module

Patrick-Christopher Mattulat 2 년 전
부모
커밋
26d283a0ea
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 2
      include/ls_std/core/interface/IEncoding.hpp
  2. 2 2
      include/ls_std/encoding/Base64.hpp

+ 2 - 2
include/ls_std/core/interface/IEncoding.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-01-03
- * Changed:         2022-05-17
+ * Changed:         2022-05-19
  *
  * */
 
@@ -18,7 +18,7 @@ namespace ls
   {
     namespace core
     {
-      namespace interface
+      namespace interface_type
       {
         class IEncoding
         {

+ 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-05-17
+ * Changed:         2022-05-19
  *
  * */
 
@@ -21,7 +21,7 @@ namespace ls
   {
     namespace encoding
     {
-      class Base64 : public ls::std::core::interface::IEncoding
+      class Base64 : public ls::std::core::interface_type::IEncoding
       {
         public: