fprime/Fw/Port/OutputSerializePort.hpp
Thomas Boyer-Chammard ab58cf18fb
Format Fw and add to CI (#3976)
* Format Fw and add to CI

* Fix include of HPP file instead of H in extern C

* Fix format strings
2025-08-04 12:56:02 -07:00

34 lines
735 B
C++

#ifndef FW_OUTPUT_SERIALIZE_PORT_HPP
#define FW_OUTPUT_SERIALIZE_PORT_HPP
#include <Fw/FPrimeBasicTypes.hpp>
#if FW_PORT_SERIALIZATION == 1
#include <Fw/Port/OutputPortBase.hpp>
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