From 5e527213a2430bb3018e5eebd909aef294edf9b5 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 18 Dec 2020 18:48:46 +0300 Subject: Switch to build2 --- xsd/cxx/option-types.hxx | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 xsd/cxx/option-types.hxx (limited to 'xsd/cxx/option-types.hxx') diff --git a/xsd/cxx/option-types.hxx b/xsd/cxx/option-types.hxx deleted file mode 100644 index f36a6ca..0000000 --- a/xsd/cxx/option-types.hxx +++ /dev/null @@ -1,34 +0,0 @@ -// file : xsd/cxx/option-types.hxx -// license : GNU GPL v2 + exceptions; see accompanying LICENSE file - -#ifndef XSD_OPTION_TYPES_HXX -#define XSD_OPTION_TYPES_HXX - -#include -#include - -namespace CXX -{ - struct cxx_version - { - enum value - { - cxx98, - cxx11 - }; - - cxx_version (value v = value (0)) : v_ (v) {} - operator value () const {return v_;} - - std::string - string () const; - - private: - value v_; - }; - - std::istream& - operator>> (std::istream&, cxx_version&); -} - -#endif // XSD_OPTION_TYPES_HXX -- cgit v1.1