1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include "otbWrapperApplicationHtmlDocGenerator.h"
#include "otbWrapperApplicationRegistry.h"
int otbWrapperApplicationHtmlDocGeneratorNew(int itkNotUsed(argc), char * itkNotUsed(argv)[])
{
typedef otb::Wrapper::ApplicationHtmlDocGenerator DocGeneratorType;
DocGeneratorType generator;
return EXIT_SUCCESS;
}
int otbWrapperApplicationHtmlDocGeneratorTest1(int argc, char * argv[])
{
if (argc != 5)
{
std::cerr << "Usage : " << argv[0] << " module_name module_path outputfilename show_parameter_key" << std::endl;
return EXIT_FAILURE;
}
typedef otb::Wrapper::ApplicationHtmlDocGenerator DocGeneratorType;
// Add module path list
otb::Wrapper::ApplicationRegistry::AddApplicationPath( argv[2] );
// Create module
otb::Wrapper::Application::Pointer app = otb::Wrapper::ApplicationRegistry::CreateApplication(argv[1]);
if (app.IsNull())
{
std::cout << "Could not find application " << argv[1] << std::endl;
return EXIT_FAILURE;
}
app->Init();
// Create the documentation output file
DocGeneratorType::GenerateDoc( app, std::string(argv[3]), static_cast<bool>(atoi(argv[4])) );
return EXIT_SUCCESS;
}
|