aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/command-installable-value.hh
blob: 8e31a0b928d8893cf4ee1ba2eb426c61741976ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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;
};

}