// file : brep/options-types -*- C++ -*- // copyright : Copyright (c) 2014-2016 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BREP_OPTIONS_TYPES #define BREP_OPTIONS_TYPES #include #include namespace brep { // brep types // enum class page_form { full, brief }; struct page_menu { string label; string link; page_menu () = default; page_menu (string b, string l): label (move (b)), link (move (l)) {} }; } #endif // BREP_OPTIONS_TYPES