Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7646


Ignore:
Timestamp:
Nov 13, 2010, 10:00:19 PM (13 years ago)
Author:
dafrick
Message:

Some comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/releasetodo/src/libraries/core/Loader.cc

    r7628 r7646  
    8888    }
    8989
     90    /**
     91    @brief
     92        Loads all opened files, while conforming to the restrictions given by the input ClassTreeMask.
     93    @param mask
     94        A ClassTreeMask, which defines which types of classes are loaded and which aren't.
     95    @param verbose
     96        Whether the loader is verbose (prints its progress in a low output level) or not.
     97    @return
     98        Returns true if successful.
     99    */
    90100    bool Loader::load(const ClassTreeMask& mask, bool verbose)
    91101    {
     
    109119    }
    110120
     121    /**
     122    @brief
     123        Reloads all opened files, while conforming to the restrictions given by the input ClassTreeMask.
     124    @param mask
     125        A ClassTreeMask, which defines which types of classes are reloaded and which aren't.
     126    @param verbose
     127        Whether the loader is verbose (prints its progress in a low output level) or not.
     128    @return
     129        Returns true if successful.
     130    */
    111131    bool Loader::reload(const ClassTreeMask& mask, bool verbose)
    112132    {
     
    115135    }
    116136
     137    /**
     138    @brief
     139        Loads the input file, while conforming to the restrictions given by the input ClassTreeMask.
     140    @param file
     141        The file to be loaded.
     142    @param mask
     143        A ClassTreeMask, which defines which types of classes are loaded and which aren't.
     144    @param verbose
     145        Whether the loader is verbose (prints its progress in a low output level) or not.
     146    @return
     147        Returns true if successful.
     148    */
    117149    bool Loader::load(const XMLFile* file, const ClassTreeMask& mask, bool verbose)
    118150    {
     
    221253    }
    222254
     255    /**
     256    @brief
     257        Reloads the input file, while conforming to the restrictions given by the input ClassTreeMask.
     258    @param file
     259        The file to be reloaded.
     260    @param mask
     261        A ClassTreeMask, which defines which types of classes are reloaded and which aren't.
     262    @param verbose
     263        Whether the loader is verbose (prints its progress in a low output level) or not.
     264    @return
     265        Returns true if successful.
     266    */
    223267    bool Loader::reload(const XMLFile* file, const ClassTreeMask& mask, bool verbose)
    224268    {
Note: See TracChangeset for help on using the changeset viewer.