Files

13 lines
180 B
C++
Raw Permalink Normal View History

#pragma once
#include <string>
namespace aurora {
void log_system_information();
namespace system_info {
#if __APPLE__
std::string getSystemVersionString();
#endif
}
}