aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/command-installable-value.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcmd/command-installable-value.hh')
-rw-r--r--src/libcmd/command-installable-value.hh7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libcmd/command-installable-value.hh b/src/libcmd/command-installable-value.hh
index 8e31a0b92..bda0bd2a1 100644
--- a/src/libcmd/command-installable-value.hh
+++ b/src/libcmd/command-installable-value.hh
@@ -3,8 +3,15 @@
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;