Nix/src/libmain/common-args.hh
2016-02-09 21:28:29 +01:00

24 lines
341 B
C++

#pragma once
#include "args.hh"
namespace nix {
struct MixCommonArgs : virtual Args
{
string programName;
MixCommonArgs(const string & programName);
};
struct MixDryRun : virtual Args
{
bool dryRun;
MixDryRun()
{
mkFlag(0, "dry-run", "show what this command would do without doing it", &dryRun);
}
};
}