mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
33 lines
492 B
C++
33 lines
492 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 = false;
|
|
|
|
MixDryRun()
|
|
{
|
|
mkFlag(0, "dry-run", "show what this command would do without doing it", &dryRun);
|
|
}
|
|
};
|
|
|
|
struct MixJSON : virtual Args
|
|
{
|
|
bool json = false;
|
|
|
|
MixJSON()
|
|
{
|
|
mkFlag(0, "json", "produce JSON output", &json);
|
|
}
|
|
};
|
|
|
|
}
|