24 lines
380 B
C++
24 lines
380 B
C++
#pragma once
|
|
|
|
#include "SystemParams.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace detail
|
|
{
|
|
class SystemParamsProvider_winImpl;
|
|
}
|
|
|
|
class SystemParamsProvider_win final
|
|
{
|
|
public:
|
|
SystemParamsProvider_win();
|
|
~SystemParamsProvider_win();
|
|
|
|
public:
|
|
SystemParams retrieveSystemParams();
|
|
private:
|
|
std::unique_ptr<detail::SystemParamsProvider_winImpl> m_impl;
|
|
};
|