nix-super/src/libmain/common-args.hh

34 lines
549 B
C++
Raw Normal View History

#pragma once
#include "args.hh"
namespace nix {
struct MixCommonArgs : virtual Args
{
string programName;
MixCommonArgs(const string & programName);
};
struct MixDryRun : virtual Args
{
2017-04-24 15:21:36 +03:00
bool dryRun = false;
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 output in JSON format, suitable for consumption by another program.", &json);
2017-04-24 15:21:36 +03:00
}
};
}