blob: e696139fbab7ee2523116e5a252d9db7edda94dc (
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
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
|