// file : brep/options.cli -*- C++ -*- // copyright : Copyright (c) 2014-2015 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file include ; include ; namespace brep { class module_options { std::uint16_t verb = 0; }; class db_options { std::string db-host = "localhost"; std::uint16_t db-port = 5432; }; class search_options: module_options, db_options { size_t results-on-page = 10; }; class view_options: module_options, db_options { }; }