diff --git a/src/Magnum/Text/AbstractFontConverter.h b/src/Magnum/Text/AbstractFontConverter.h index d27b52b59..6008946cb 100644 --- a/src/Magnum/Text/AbstractFontConverter.h +++ b/src/Magnum/Text/AbstractFontConverter.h @@ -227,6 +227,7 @@ class MAGNUM_TEXT_EXPORT AbstractFontConverter: public PluginManager::AbstractPl * @see @ref features(), @ref exportFontToFile(), * @ref exportGlyphCacheToData() */ + /** @todo also change to Optional when deSTLifying */ std::vector>> exportFontToData(AbstractFont& font, AbstractGlyphCache& cache, const std::string& filename, const std::string& characters) const; /** @@ -240,6 +241,7 @@ class MAGNUM_TEXT_EXPORT AbstractFontConverter: public PluginManager::AbstractPl * @see @ref features(), @ref exportFontToFile(), * @ref exportGlyphCacheToSingleData() */ + /** @todo change to Optional> when deSTLifying */ Containers::Array exportFontToSingleData(AbstractFont& font, AbstractGlyphCache& cache, const std::string& characters) const; /** @@ -276,6 +278,7 @@ class MAGNUM_TEXT_EXPORT AbstractFontConverter: public PluginManager::AbstractPl * @see @ref features(), @ref exportGlyphCacheToFile(), * @ref exportFontToData() */ + /** @todo also change to Optional when deSTLifying */ std::vector>> exportGlyphCacheToData(AbstractGlyphCache& cache, const std::string& filename) const; /** @@ -290,6 +293,7 @@ class MAGNUM_TEXT_EXPORT AbstractFontConverter: public PluginManager::AbstractPl * @see @ref features(), @ref exportGlyphCacheToFile(), * @ref importGlyphCacheFromSingleData() */ + /** @todo change to Optional> when deSTLifying */ Containers::Array exportGlyphCacheToSingleData(AbstractGlyphCache& cache) const; /**