mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-15 20:08:54 +03:00
14 lines
170 B
C++
14 lines
170 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Nuake
|
|
{
|
|
class OS
|
|
{
|
|
public:
|
|
static int GetTime();
|
|
static void ShowInFileExplorer(const std::string& filePath);
|
|
};
|
|
}
|