mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-16 03:06:17 +02:00
14 lines
283 B
C++
14 lines
283 B
C++
|
#include "installable-value.hh"
|
||
|
#include "command.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
struct InstallableValueCommand : InstallableCommand
|
||
|
{
|
||
|
virtual void run(ref<Store> store, ref<InstallableValue> installable) = 0;
|
||
|
|
||
|
void run(ref<Store> store, ref<Installable> installable) override;
|
||
|
};
|
||
|
|
||
|
}
|