From 1dc38cf49b6c7a8b661a9cc675ded94c8ab33c36 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 18 Jan 2016 07:35:12 +0200 Subject: Implement brep-migrate utility --- loader/options.cli | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 loader/options.cli (limited to 'loader/options.cli') diff --git a/loader/options.cli b/loader/options.cli deleted file mode 100644 index 0899156..0000000 --- a/loader/options.cli +++ /dev/null @@ -1,46 +0,0 @@ -// file : loader/options.cli -// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd -// license : MIT; see accompanying LICENSE file - -include ; -include ; // uint16_t - -class options -{ - bool --help {"Print usage information and exit."} - bool --version {"Print version and exit."} - - std::string --db-user|-u - { - "", - "Database user name. If not specified, then operating system (login) - name is used." - } - - std::string --db-password - { - "", - "Database password. If not specified, then login without password is - expected to work." - } - - std::string --db-name|-n = "brep" - { - "", - "Database name. If not specified, then '\cb{brep}' is used by default." - } - - std::string --db-host|-h - { - "", - "Database host name, address, or socket. If not specified, then connect - to \cb{localhost} using the operating system-default mechanism - (Unix-domain socket, etc)." - } - - std::uint16_t --db-port|-p = 0 - { - "", - "Database port number. If not specified, the default port is used." - } -}; -- cgit v1.1