Skip to content

Commit

Permalink
Trade: doc++
Browse files Browse the repository at this point in the history
  • Loading branch information
mosra committed Mar 5, 2021
1 parent 41dc0df commit e3c72b3
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Magnum/Trade/AbstractImageConverter.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ enum class ImageConverterFlag: UnsignedByte {
* Print verbose diagnostic during conversion. By default the converter
* only prints messages on error or when some operation might cause
* unexpected data modification or loss.
*
* Corresponds to the `-v` / `--verbose` option in
* @ref magnum-imageconverter "magnum-imageconverter".
*/
Verbose = 1 << 0

Expand Down Expand Up @@ -260,6 +263,9 @@ class MAGNUM_TRADE_EXPORT AbstractImageConverter: public PluginManager::Abstract
* Some flags can be set only if the converter supports particular
* features, see documentation of each @ref ImageConverterFlag for more
* information. By default no flags are set.
*
* Corresponds to the `-v` / `--verbose` option in
* @ref magnum-imageconverter "magnum-imageconverter".
*/
void setFlags(ImageConverterFlags flags);

Expand Down
10 changes: 10 additions & 0 deletions src/Magnum/Trade/AbstractImporter.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ enum class ImporterFlag: UnsignedByte {
* Print verbose diagnostic during import. By default the importer only
* prints messages on error or when some operation might cause unexpected
* data modification or loss.
*
* Corresponds to the `-v` / `--verbose` option in
* @ref magnum-imageconverter "magnum-imageconverter",
* @ref magnum-sceneconverter "magnum-sceneconverter" and
* @ref magnum-player "magnum-player".
*/
Verbose = 1 << 0,

Expand Down Expand Up @@ -393,6 +398,11 @@ class MAGNUM_TRADE_EXPORT AbstractImporter: public PluginManager::AbstractManagi
* opened. Some flags can be set only if the importer supports
* particular features, see documentation of each @ref ImporterFlag for
* more information. By default no flags are set.
*
* Corresponds to the `-v` / `--verbose` option in
* @ref magnum-imageconverter "magnum-imageconverter",
* @ref magnum-sceneconverter "magnum-sceneconverter" and
* @ref magnum-player "magnum-player".
*/
void setFlags(ImporterFlags flags);

Expand Down
6 changes: 6 additions & 0 deletions src/Magnum/Trade/AbstractSceneConverter.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ enum class SceneConverterFlag: UnsignedByte {
* Print verbose diagnostic during conversion. By default the converter
* only prints messages on error or when some operation might cause
* unexpected data modification or loss.
*
* Corresponds to the `-v` / `--verbose` option in
* @ref magnum-sceneconverter "magnum-sceneconverter".
*/
Verbose = 1 << 0

Expand Down Expand Up @@ -229,6 +232,9 @@ class MAGNUM_TRADE_EXPORT AbstractSceneConverter: public PluginManager::Abstract
* Some flags can be set only if the converter supports particular
* features, see documentation of each @ref SceneConverterFlag for more
* information. By default no flags are set.
*
* Corresponds to the `-v` / `--verbose` option in
* @ref magnum-sceneconverter "magnum-sceneconverter".
*/
void setFlags(SceneConverterFlags flags);

Expand Down

0 comments on commit e3c72b3

Please sign in to comment.