summaryrefslogtreecommitdiff
path: root/cli/option-types.hxx
blob: e04fb430e50818ee4c9d9230ef8f995541d2f1c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// file      : cli/option-types.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#ifndef CLI_OPTION_TYPES_HXX
#define CLI_OPTION_TYPES_HXX

#include <iosfwd>
#include <string>

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