dfx 0.1.0
Linux-based dynamic dataflow executor
Loading...
Searching...
No Matches
Env.hpp
1// SPDX-FileCopyrightText: 2025 Vincent Leroy
2// SPDX-License-Identifier: MIT
3//
4// This file is part of dfx.
5//
6// Licensed under the MIT License. See the LICENSE file in the project root
7// for full license information.
8
9#pragma once
10
11// Standard includes
12#include <optional>
13#include <string>
14
16{
17 std::optional<std::string> get(std::string const & name);
18 std::string getDefault(std::string const & name, std::string defaultValue);
19} // !namespace dfx::Utils::Env
Definition Env.hpp:16