36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
// Copyright (C) 2010, Guy Barrand. All rights reserved.
|
|
// See the file tools.license for terms.
|
|
|
|
#ifndef tools_sargs
|
|
#define tools_sargs
|
|
|
|
#include "S_STRING"
|
|
|
|
namespace tools {
|
|
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_verbose,-verbose)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_h,-h)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_help,-help)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_version,-version)
|
|
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_host,-host)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_port,-port)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_can_shutdown,-can_shutdown)
|
|
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_land,-land)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_document,-document)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_orders,-orders)
|
|
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_black,-black)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_full_screen,-full_screen)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_no_decos,-no_decos)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_solid,-solid)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_monitor,-monitor)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_monitors,-monitors)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_terminal,-terminal)
|
|
TOOLS_GLOBAL_STRING_VALUE(arg_arg0,-arg0)
|
|
|
|
}
|
|
|
|
#endif
|