mirror of
https://github.com/NixOS/nix
synced 2025-06-24 22:11:15 +02:00
12 lines
256 B
C++
12 lines
256 B
C++
#pragma once
|
|
#include "nix/fetchers/fetch-settings.hh"
|
|
#include "nix/util/ref.hh"
|
|
|
|
/**
|
|
* A shared reference to `nix::fetchers::Settings`
|
|
* @see nix::fetchers::Settings
|
|
*/
|
|
struct nix_fetchers_settings
|
|
{
|
|
nix::ref<nix::fetchers::Settings> settings;
|
|
};
|