diff --git a/OgreMain/include/OgreFileSystem.h b/OgreMain/include/OgreFileSystem.h index 0b08e714fde..72431a81247 100644 --- a/OgreMain/include/OgreFileSystem.h +++ b/OgreMain/include/OgreFileSystem.h @@ -57,7 +57,9 @@ namespace Ogre { /// @copydoc FactoryObj::getType const String& getType(void) const override; + //! @cond Doxygen_Suppress using ArchiveFactory::createInstance; + //! @endcond Archive *createInstance( const String& name, bool readOnly ) override; diff --git a/OgreMain/include/OgreZip.h b/OgreMain/include/OgreZip.h index 0798c585b9f..f62960467e2 100644 --- a/OgreMain/include/OgreZip.h +++ b/OgreMain/include/OgreZip.h @@ -60,7 +60,9 @@ namespace Ogre { /// @copydoc FactoryObj::getType const String& getType(void) const override; + //! @cond Doxygen_Suppress using ArchiveFactory::createInstance; + //! @endcond Archive *createInstance( const String& name, bool readOnly ) override; }; @@ -74,7 +76,9 @@ namespace Ogre { const String& getType(void) const override; + //! @cond Doxygen_Suppress using ArchiveFactory::createInstance; + //! @endcond Archive *createInstance( const String& name, bool readOnly ) override; void destroyInstance( Archive* ptr) override;