From 63229f465aaea8dd5553814535220817319a64f5 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 4 May 2015 21:22:14 +0200 Subject: Cleanup the code --- brep/options.cli | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'brep/options.cli') diff --git a/brep/options.cli b/brep/options.cli index cbd5d3a..8da666f 100644 --- a/brep/options.cli +++ b/brep/options.cli @@ -1,21 +1,22 @@ include ; +include ; namespace brep { class module_options { - unsigned int verb = 0; + std::uint16_t verb = 0; }; class db_options { std::string db-host = "localhost"; - unsigned short db-port = 3306; + std::uint16_t db-port = 3306; }; class search_options: module_options, db_options { - unsigned int results-on-page = 10; + size_t results-on-page = 10; }; class view_options: module_options, db_options -- cgit v1.1