1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef LOGGER_SYSLOG_HH #define LOGGER_SYSLOG_HH #include <memory> #include <string> #include "logger.hh" class LoggerSyslog : public Logger { public: static std::unique_ptr<Logger> create(std::string const& prgname); }; #endif // LOGGER_SYSLOG_HH