summaryrefslogtreecommitdiff
path: root/cli/cli/option-types.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-04-08 14:51:57 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-04-27 11:38:53 +0300
commit720c5a33b6a49cf328fdd7611f49153cf8f60247 (patch)
tree9725f3d1f42ec90fde84520f49647edea013ce5e /cli/cli/option-types.cxx
parent3183f3bb927a90783ae0aeaf190a0919377aabe4 (diff)
Separate tests and examples into individual packages
Also make cli module to be explicitly enabled via the config.cli configuration variable.
Diffstat (limited to 'cli/cli/option-types.cxx')
-rw-r--r--cli/cli/option-types.cxx43
1 files changed, 43 insertions, 0 deletions
diff --git a/cli/cli/option-types.cxx b/cli/cli/option-types.cxx
new file mode 100644
index 0000000..da1f434
--- /dev/null
+++ b/cli/cli/option-types.cxx
@@ -0,0 +1,43 @@
+// file : cli/option-types.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// license : MIT; see accompanying LICENSE file
+
+#include <istream>
+
+#include <cli/option-types.hxx>
+
+using namespace std;
+
+static const char* cxx_version_[] =
+{
+ "c++98",
+ "c++11"
+ "c++14"
+};
+
+string cxx_version::
+string () const
+{
+ return cxx_version_[v_];
+}
+
+istream&
+operator>> (istream& is, cxx_version& v)
+{
+ string s;
+ is >> s;
+
+ if (!is.fail ())
+ {
+ if (s == "c++98")
+ v = cxx_version::cxx98;
+ else if (s == "c++11")
+ v = cxx_version::cxx11;
+ else if (s == "c++14")
+ v = cxx_version::cxx14;
+ else
+ is.setstate (istream::failbit);
+ }
+
+ return is;
+}