2016-02-09 22:07:48 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "args.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct MixCommonArgs : virtual Args
|
|
|
|
{
|
2016-02-09 22:28:29 +02:00
|
|
|
string programName;
|
2016-02-09 22:07:48 +02:00
|
|
|
MixCommonArgs(const string & programName);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MixDryRun : virtual Args
|
|
|
|
{
|
2017-04-24 15:21:36 +03:00
|
|
|
bool dryRun = false;
|
2016-02-09 22:07:48 +02:00
|
|
|
|
|
|
|
MixDryRun()
|
|
|
|
{
|
|
|
|
mkFlag(0, "dry-run", "show what this command would do without doing it", &dryRun);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-24 15:21:36 +03:00
|
|
|
struct MixJSON : virtual Args
|
|
|
|
{
|
|
|
|
bool json = false;
|
|
|
|
|
|
|
|
MixJSON()
|
|
|
|
{
|
|
|
|
mkFlag(0, "json", "produce JSON output", &json);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-02-09 22:07:48 +02:00
|
|
|
}
|