// file : cli/options.cli // author : Boris Kolpackov // 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 ; include ; include ; class options { bool --help; bool --version; std::string --output-dir | -o; bool --suppress-inline; std::string --hxx-suffix = ".hxx"; std::string --ixx-suffix = ".ixx"; std::string --cxx-suffix = ".cxx"; std::string --option-prefix = "-"; std::string --option-separator = "--"; bool --include-with-brackets; std::string --include-prefix; std::string --guard-prefix; std::map --reserved-name; };