#ifndef STA_CORE_PRINTABLE_PRINTF_HPP #define STA_CORE_PRINTABLE_PRINTF_HPP #include namespace sta { /** * @brief A formatted printable class that prints to stdout. * * @ingroup sta_core */ class PrintablePrintf : public Printable { public: /** * @brief Construct a new Printable Printf object */ PrintablePrintf(); /** * @brief Print string. * * @param str String buffer * @param length String length */ void print(const char * str, size_t length) override; }; } // namespace sta #endif // STA_CORE_PRINTABLE_PRINTF_HPP