aboutsummaryrefslogtreecommitdiff
path: root/brep/options-types
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-02-28 16:49:17 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2016-03-02 17:34:10 +0300
commit4fec7e73201ed50e4a4157cb1ea1f1c63566dd89 (patch)
tree93ca4fc57d2ba8bf077ac021cf96fa6335c8bfcc /brep/options-types
parentcfdbf0f9c52288efaa57eba3a9c913790f034cf2 (diff)
Menu customization
Diffstat (limited to 'brep/options-types')
-rw-r--r--brep/options-types10
1 files changed, 10 insertions, 0 deletions
diff --git a/brep/options-types b/brep/options-types
index 767423c..922637b 100644
--- a/brep/options-types
+++ b/brep/options-types
@@ -17,6 +17,16 @@ namespace brep
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