Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Class invalid_syntax

boost::program_options::invalid_syntax

Synopsis

class invalid_syntax : public boost::program_options::error {
public:
  // construct/copy/destruct
  invalid_syntax(const std::string &, const std::string &);
  ~invalid_syntax();
  std::string tokens;
  std::string msg;
};

Description

invalid_syntax public construct/copy/destruct

  1. invalid_syntax(const std::string & tokens, const std::string & msg);
  2. ~invalid_syntax();

PrevUpHomeNext