Quellcode durchsuchen

Fixed SerializableJSONInteger class

- made ISerializable interface public inside class
Patrick vor 4 Jahren
Ursprung
Commit
ac3424dd01
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      source/serialization/boxing/SerializableJSONInteger.hpp

+ 2 - 2
source/serialization/boxing/SerializableJSONInteger.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-21
  * Created:         2020-08-21
- * Changed:         2020-08-21
+ * Changed:         2020-08-22
  *
  *
  * */
  * */
 
 
@@ -16,7 +16,7 @@
 #include <json.hpp>
 #include <json.hpp>
 
 
 namespace ls_std {
 namespace ls_std {
-  class SerializableJSONInteger : public Class, ISerializable {
+  class SerializableJSONInteger : public Class, public ISerializable {
     public:
     public:
 
 
       explicit SerializableJSONInteger(std::shared_ptr<ls_std::Integer> _integer);
       explicit SerializableJSONInteger(std::shared_ptr<ls_std::Integer> _integer);