mirror of
https://github.com/jakcron/nstool.git
synced 2025-01-03 16:35:29 +00:00
26 lines
633 B
C
26 lines
633 B
C
|
#pragma once
|
||
|
#include <tc/types.h>
|
||
|
#include <tc/Optional.h>
|
||
|
#include <tc/io.h>
|
||
|
#include <tc/io/IOUtil.h>
|
||
|
#include <tc/cli.h>
|
||
|
#include <fmt/core.h>
|
||
|
|
||
|
|
||
|
namespace nstool {
|
||
|
|
||
|
struct CliOutputMode
|
||
|
{
|
||
|
bool show_basic_info;
|
||
|
bool show_extended_info;
|
||
|
bool show_layout;
|
||
|
bool show_keydata;
|
||
|
|
||
|
CliOutputMode() : show_basic_info(false), show_extended_info(false), show_layout(false), show_keydata(false)
|
||
|
{}
|
||
|
|
||
|
CliOutputMode(bool show_basic_info, bool show_extended_info, bool show_layout, bool show_keydata) : show_basic_info(show_basic_info), show_extended_info(show_extended_info), show_layout(show_layout), show_keydata(show_keydata)
|
||
|
{}
|
||
|
};
|
||
|
|
||
|
}
|