

Go to the source code of this file.
Namespaces | |
| mlpack | |
.hpp | |
| mlpack::bindings | |
| mlpack::bindings::cli | |
Functions | |
template < typename T > | |
| void | AddToPO (const std::string &boostName, const std::string &descr, boost::program_options::options_description &desc, const typename boost::disable_if< util::IsStdVector< T >>::type *=0, const typename boost::disable_if< std::is_same< T, bool >>::type *=0) |
| Add a non-vector option to boost::program_options. More... | |
template < typename T > | |
| void | AddToPO (const std::string &boostName, const std::string &descr, boost::program_options::options_description &desc, const typename boost::enable_if< util::IsStdVector< T >>::type *=0, const typename boost::disable_if< std::is_same< T, bool >>::type *=0) |
| Add a vector option to boost::program_options. More... | |
template < typename T > | |
| void | AddToPO (const std::string &boostName, const std::string &descr, boost::program_options::options_description &desc, const typename boost::disable_if< util::IsStdVector< T >>::type *=0, const typename boost::enable_if< std::is_same< T, bool >>::type *=0) |
| Add a boolean option to boost::program_options. More... | |
template < typename T > | |
| void | AddToPO (const util::ParamData &d, const void *, void *output) |
| Add an option to boost::program_options. More... | |
Utility functions to add options to boost::program_options based on their type.
mlpack is free software; you may redistribute it and/or modify it under the terms of the 3-clause BSD license. You should have received a copy of the 3-clause BSD license along with mlpack. If not, see http://www.opensource.org/licenses/BSD-3-Clause for more information.
Definition in file add_to_po.hpp.