#ifndef FW_OUTPUT_SERIALIZE_PORT_HPP #define FW_OUTPUT_SERIALIZE_PORT_HPP #include #if FW_PORT_SERIALIZATION == 1 #include namespace Fw { class OutputSerializePort final : public OutputPortBase { public: OutputSerializePort(); virtual ~OutputSerializePort(); void init() override; protected: #if FW_OBJECT_TO_STRING == 1 const char* getToStringFormatString() override; //!< Get format string for toString call #endif private: OutputSerializePort(OutputSerializePort*); OutputSerializePort(OutputSerializePort&); OutputSerializePort& operator=(OutputSerializePort&); }; } // namespace Fw #endif // FW_OUTPUT_SERIALIZE_PORT_HPP #endif