1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-21 23:40:24 -04:00
nix/src/libmain/common-args.hh

23 lines
317 B
C++
Raw Normal View History

#pragma once
#include "args.hh"
namespace nix {
struct MixCommonArgs : virtual Args
{
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);
}
};
}