blob: 49632d9f29f19a0bc5d30ecf5f4c40155522fcc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// file : mod/options-types.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef MOD_OPTIONS_TYPES_HXX
#define MOD_OPTIONS_TYPES_HXX
#include <libbrep/types.hxx>
#include <libbrep/utility.hxx>
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_HXX
|