/
ne1ghost
/
nix
Обзор
Документация
Войти
/
ne1ghost
/
nix
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/libcmd/command-installable-value.hh
23 строки
473 B
John Ericson
Ensure all headers have `#pragma once` and are in API docs
01 апр 2023, 06:19
01 апр 2023, 06:19
f4ab297
Код
Авторство
О чём код?
#pragma once ///@file #include "installable-value.hh" #include "command.hh" namespace nix { /** * An InstallableCommand where the single positional argument must be an * InstallableValue in particular. */ struct InstallableValueCommand : InstallableCommand { /** * Entry point to this command */ virtual void run(ref<Store> store, ref<InstallableValue> installable) = 0; void run(ref<Store> store, ref<Installable> installable) override; }; }