/**
 * @file markdown/generate_markdown.binding.cpp.in
 * @author Ryan Curtin
 *
 * Print Markdown for a specific binding.  This provides two utility
 * methods---one that prints info for a table of contents, and one that prints
 * the Markdown bindings themselves.
 *
 * 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.
 */

#define BINDING_NAME "image_converter"

#include <mlpack/core.hpp>
#include "generate_markdown.image_converter.hpp"
#include "binding_info.hpp"
#include "print_docs.hpp"
#include "get_binding_name.hpp"

static const std::string testName = "image_converter";
#include </var/www/mlpack.ratml.org/mlpack.org/_src/mlpack-3.2.2/src/mlpack/methods/preprocess/image_converter_main.cpp>

using namespace std;

namespace mlpack {
namespace bindings {
namespace markdown {

void Printimage_converterHeaders()
{
  // Fill the vector of languages for which we want to print.
  vector<string> languages;
  
  languages.push_back("cli");
  languages.push_back("python");
  languages.push_back("julia");
  languages.push_back("go");

  PrintHeaders("image_converter", languages);
}

void Printimage_converterDocs()
{
  // Fill the vector of languages for which we want to print.
  vector<string> languages;
  
  languages.push_back("cli");
  languages.push_back("python");
  languages.push_back("julia");
  languages.push_back("go");

  PrintDocs("image_converter", languages);
}

} // namespace markdown
} // namespace bindings
} // namespace mlpack
