Files
MuditaOS/module-sys/Service/LogOutput.hpp
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

27 lines
351 B
C++

//
// Created by mati on 12.03.19.
//
#ifndef DBUS_LOGOUTPUT_HPP
#define DBUS_LOGOUTPUT_HPP
#include <string>
#ifdef TARGET_Linux
#include <iostream>
#endif
class LogOutput
{
public:
static void Output(const std::string &name)
{
#if defined(TARGET_Linux)
std::cout << name << "\n";
#endif
}
};
#endif // DBUS_LOGOUTPUT_HPP