Files
Plugin/Source/ThirdParty/include/SenseGlove/Common/Environment.hpp
T

36 lines
602 BLFS
C++

/**
* @file
*
* @author Mamadou Babaei <mamadou@senseglove.com>
*
* @section LICENSE
*
* Copyright (c) 2020 - 2026 SenseGlove
*
* @section DESCRIPTION
*
* Utilities to query the runtime environment.
*/
#pragma once
#include <SenseGlove/Common/Platform.hpp>
#include <string>
namespace SGCommon
{
class SGCOMMON_API Environment;
}// namespace SGCommon
class SGCOMMON_API SGCommon::Environment
{
public:
static bool GetEnv(const char* var, std::string& out_value);
public:
Environment() = delete;
virtual ~Environment() = delete;
};