mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-25 06:18:18 -05:00
31 lines
357 B
C++
31 lines
357 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
|