aboutsummaryrefslogtreecommitdiff
path: root/brep/options-types
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-04-21 16:05:13 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-04-21 16:05:13 +0200
commit2a0f39b29c1bea6a4497c0f1826052ffa453af9e (patch)
tree283f6bf1569c1b9f00b6e25fe986ccfff8a8629f /brep/options-types
parentc6b4d6c6489731eedba606d3c85c4319c4478b50 (diff)
Move module implementation from brep/ to mod/
Diffstat (limited to 'brep/options-types')
-rw-r--r--brep/options-types32
1 files changed, 0 insertions, 32 deletions
diff --git a/brep/options-types b/brep/options-types
deleted file mode 100644
index 922637b..0000000
--- a/brep/options-types
+++ /dev/null
@@ -1,32 +0,0 @@
-// 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 <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 // BREP_OPTIONS_TYPES