From 720c5a33b6a49cf328fdd7611f49153cf8f60247 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 8 Apr 2020 14:51:57 +0300 Subject: Separate tests and examples into individual packages Also make cli module to be explicitly enabled via the config.cli configuration variable. --- cli/option-types.hxx | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 cli/option-types.hxx (limited to 'cli/option-types.hxx') diff --git a/cli/option-types.hxx b/cli/option-types.hxx deleted file mode 100644 index 02d9ede..0000000 --- a/cli/option-types.hxx +++ /dev/null @@ -1,33 +0,0 @@ -// file : cli/option-types.hxx -// author : Boris Kolpackov -// license : MIT; see accompanying LICENSE file - -#ifndef CLI_OPTION_TYPES_HXX -#define CLI_OPTION_TYPES_HXX - -#include -#include - -struct cxx_version -{ - enum value - { - cxx98, - cxx11, - cxx14 - }; - - 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 // CLI_OPTION_TYPES_HXX -- cgit v1.1