summaryrefslogtreecommitdiff
path: root/cli-tests/combined/test.cli
blob: 6377de8221c2a83abd1bc264586e96bc3b81642a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// file      : combined/test.cli
// author    : Boris Kolpackov <boris@codesynthesis.com>
// license   : MIT; see accompanying LICENSE file

include <string>;

class options
{
  std::string --foo|-f;

  bool -x;
  bool -y;
  bool -z;

  bool --xyz;
};