summaryrefslogtreecommitdiff
path: root/cli/options.cli
blob: 2ef8738973d068c35cb5a5402f2b369ab881b3ee (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
// file      : cli/options.cli
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

// NOTE: Make sure you have a working CLI compiler around
// before modifying this file.
//

include <string>;
include <vector>;

class options
{
  bool --help;
  bool --version;

  bool --suppress-inline;

  std::string --output-dir;
  std::string --hxx-suffix = ".hxx";
  std::string --ixx-suffix = ".ixx";
  std::string --cxx-suffix = ".cxx";
};