0

Doxygen 1.8.6 から chm/html 出力を生成できません。以下に示すcppファイルにリストされているメソッドの説明を生成したいと思います。INPUTタグのdoxygen構成ファイルにファイルを含めました。出力に cpp ファイルのメソッドを表示したいだけです。次のヘッダー ファイル .h もあります。

API.h

extern "C" 
{
  #include "..\Include\APIDef.h"

  AFX_MIRASTER_API MIRASIO_ReturnCode MIRASIO_ConvertOperation(
    const wchar_t* InputFilePath, const wchar_t* OutputFilePath,
    const wchar_t* DstDriverString, MIRASIO_CompressionType CompressionType,
    unsigned int CompressionLevel, bool MaintainOverview,
    unsigned int srcField, unsigned int srcEvent,unsigned int srcBand,
    unsigned int nProgressTrackerHandle = InvalidTracker);

API.cpp

/**
 * 
 * @brief Convert operation (Old). Converts a specified file to MRR format.
 * 
 *
 * \param[in]       InputFilePath           Full path to the input file.
 * \param[in]       OutputFilePath          Full path to the output file.
 * \param[in]       DstDriverString         Driver to use to create the output file.
 * \param[in]       CompressionType         Type of compression.
 * \param[in]       CompressionLevel        Level of the compression.
 * \param[in]       MaintainOverview        True to maintain overview.
 * \param[in]       srcField                Source field index to resample (when source file is of MRR raster type).
 * \param[in]       srcEvent                Source event type.
 * \param[in]       srcBand                 Band of the source file.
 * \param[in]       nProgressTrackerHandle  Progress tracker handle.
 *
 * @return <code>MIRASIO_ReturnCode</code>.
 */

MIRASIO_ReturnCode MIRASIO_ConvertOperation (
  const wchar_t* InputFilePath, const wchar_t* OutputFilePath,
  const wchar_t* DstDriverString, MIRASIO_CompressionType CompressionType,
  unsigned int CompressionLevel, bool MaintainOverview, unsigned int srcField,
  unsigned int srcEvent, unsigned int srcBand, unsigned int nProgressTrackerHandle)
{   
  return RasterOperationsContainer::AcquireProcessingOperation()->ConvertOperation(
           InputFilePath,OutputFilePath, DstDriverString,CompressionType,
           CompressionLevel, MaintainOverview, srcField, srcEvent, srcBand,
           nProgressTrackerHandle);
}

cpp ファイルにリストされているメソッドのドキュメントを生成するにはどうすればよいですか? doxygen 構成ファイルで変更する必要があるパラメーターは何ですか?

4

1 に答える 1