diff options
Diffstat (limited to 'mod/options-types')
-rw-r--r-- | mod/options-types | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/mod/options-types b/mod/options-types new file mode 100644 index 0000000..e696139 --- /dev/null +++ b/mod/options-types @@ -0,0 +1,32 @@ +// file : mod/options-types -*- C++ -*- +// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef MOD_OPTIONS_TYPES +#define MOD_OPTIONS_TYPES + +#include <brep/types> +#include <brep/utility> + +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 // MOD_OPTIONS_TYPES |