From 2a0f39b29c1bea6a4497c0f1826052ffa453af9e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 21 Apr 2016 16:05:13 +0200 Subject: Move module implementation from brep/ to mod/ --- brep/options-types | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 brep/options-types (limited to 'brep/options-types') 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 -#include - -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 -- cgit v1.1