Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 31, 2010, 11:19:49 PM (14 years ago)
Author:
landauf
Message:

fixed the remaining doxygen warnings.

there are still 3 possible cases which produce a warning, but I can't fix them and they are all irrelevant:

  • if you declare an argument completion function
  • if you use an argument completion function
  • if you declare a console command and pass a value which contains "::" (for example KeybindMode::OnHold or AccessLevel::Master)
Location:
code/branches/doc/src/libraries
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/doc/src/libraries/core/Identifier.h

    r7297 r7300  
    303303    class ClassIdentifier : public Identifier
    304304    {
     305        #if true // doxygen workaround: doxygen ignores the following #include because of this #if, removes some warnings
    305306        #define SUPER_INTRUSIVE_DECLARATION_INCLUDE
    306307        #include "Super.h"
     308        #endif
    307309
    308310        public:
  • code/branches/doc/src/libraries/core/MemoryArchive.cc

    r6417 r7300  
    5454    }
    5555
    56     DataStreamPtr MemoryArchive::open(const String& filename) const
     56    DataStreamPtr MemoryArchive::open(const Ogre::String& filename) const
    5757    {
    5858        const FileMap& files = archives_s[this->getName()];
     
    6464    }
    6565
    66     void MemoryArchive::findFiles(const String& pattern, bool bRecursive,
    67         bool bDirs, StringVector* simpleList, FileInfoList* detailList)
     66    void MemoryArchive::findFiles(const Ogre::String& pattern, bool bRecursive,
     67        bool bDirs, Ogre::StringVector* simpleList, Ogre::FileInfoList* detailList)
    6868    {
    6969        const FileMap& files = archives_s[this->getName()];
     
    110110    }
    111111
    112     StringVectorPtr MemoryArchive::find(const String& pattern,
     112    StringVectorPtr MemoryArchive::find(const Ogre::String& pattern,
    113113                                            bool recursive, bool dirs)
    114114    {
     
    118118    }
    119119
    120     FileInfoListPtr MemoryArchive::findFileInfo(const String& pattern,
     120    FileInfoListPtr MemoryArchive::findFileInfo(const Ogre::String& pattern,
    121121        bool recursive, bool dirs)
    122122    {
     
    126126    }
    127127
    128     bool MemoryArchive::exists(const String& filename)
     128    bool MemoryArchive::exists(const Ogre::String& filename)
    129129    {
    130130        const FileMap& files = archives_s[this->getName()];
  • code/branches/doc/src/libraries/network/GamestateClient.cc

    r7163 r7300  
    105105  * @return iterator pointing to the next object in the list
    106106  */
    107   void GamestateClient::removeObject(ObjectList<Synchronisable>::iterator &it) {
    108     ObjectList<Synchronisable>::iterator temp=it;
     107  void GamestateClient::removeObject(ObjectListIterator<Synchronisable> &it) {
     108    ObjectListIterator<Synchronisable> temp=it;
    109109    ++it;
    110110    temp->destroy(); // or delete?
Note: See TracChangeset for help on using the changeset viewer.