Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 28, 2006, 12:16:37 AM (18 years ago)
Author:
bensch
Message:

new_class_id: doxy-tags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/util/loading/resource.h

    r9848 r9850  
    1414#include "filesys/directory.h"
    1515
     16//! A Namespace Resources and ResourceHandling is defined in.
    1617namespace Resources
    1718{
     
    2930    KeepLevel(const std::string& keepLevelName);
    3031
     32    //! Compare equality
    3133    inline bool operator==(const KeepLevel& keepLevel) const { return this->_keepLevel == keepLevel._keepLevel; };
     34    //! Compares inequality
    3235    inline bool operator!=(const KeepLevel& keepLevel) const { return this->_keepLevel != keepLevel._keepLevel; };
     36    //! Compares less/equal than
    3337    inline bool operator<=(const KeepLevel& keepLevel) const { return this->_keepLevel <= keepLevel._keepLevel; };
     38    //! Compares less than
    3439    inline bool operator<(const KeepLevel& keepLevel) const { return this->_keepLevel < keepLevel._keepLevel; };
    3540
    36     /** @returns the KeepLevel */
     41    /** @returns the KeepLevel as a number */
    3742    inline unsigned int keepLevel() const { return _keepLevel; };
    3843    const std::string& name() const;
     
    8590  public:
    8691    virtual ~Type();
    87     /** @returns true if the names match @param resourceName the Name to compare. @brief compare the Type with a Name */
    88     bool operator==(const std::string& resourceName) const { return this->_typeName == resourceName; };
     92    /** @returns true if the names match @param typeName the Name to compare. @brief compare the Type with a Name */
     93    bool operator==(const std::string& typeName) const { return this->_typeName == typeName; };
    8994
    9095    void addExtension(const std::string& extension);
Note: See TracChangeset for help on using the changeset viewer.