#ifndef SERIALIZER_H_ #define SERIALIZER_H_ #include #include #include #include using json = nlohmann::json; class Serializer { public: Serializer(); void Serialize(std::vector> fans); private: void WriteJson(json o); }; #endif // SERIALIZER_H_