From 08f3863a4a7173d4186e593d8fbc73d9e91b8765 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Wed, 12 Jul 2017 15:09:05 -0400 Subject: [PATCH] Exclude specializations from Doxygen documentation. --- src/mlpack/core/data/load.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/mlpack/core/data/load.hpp b/src/mlpack/core/data/load.hpp index 767ac0d3cd..99a91807e7 100644 --- a/src/mlpack/core/data/load.hpp +++ b/src/mlpack/core/data/load.hpp @@ -64,6 +64,13 @@ bool Load(const std::string& filename, const bool fatal = false, const bool transpose = true); +/** + * Don't document these with doxygen; these declarations aren't helpful to + * users. + * + * @cond + */ + extern template bool Load(const std::string&, arma::Mat&, const bool, @@ -95,6 +102,10 @@ extern template bool Load(const std::string&, const bool, const bool); +/** + * @endcond + */ + /** * Load a column vector from a file, guessing the filetype from the extension. * @@ -198,6 +209,13 @@ bool Load(const std::string& filename, const bool fatal = false, const bool transpose = true); +/** + * Don't document these with doxygen; they aren't helpful for users to know + * about. + * + * @cond + */ + extern template bool Load( const std::string&, arma::Mat&, @@ -233,6 +251,10 @@ extern template bool Load( const bool, const bool); +/** + * @endcond + */ + /** * Load a model from a file, guessing the filetype from the extension, or, * optionally, loading the specified format. If automatic extension detection