Browse Source

Text: add TODOs for when I get to reviving this library.

pull/559/head
Vladimír Vondruš 4 years ago
parent
commit
c0e83848ea
  1. 4
      src/Magnum/Text/AbstractFontConverter.h

4
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<std::pair<std::string, Containers::Array<char>>> 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<Array<char>> when deSTLifying */
Containers::Array<char> 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<std::pair<std::string, Containers::Array<char>>> 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<Array<char>> when deSTLifying */
Containers::Array<char> exportGlyphCacheToSingleData(AbstractGlyphCache& cache) const;
/**

Loading…
Cancel
Save