Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 27, 2006, 11:25:43 PM (18 years ago)
Author:
bensch
Message:

renamed NewResource to Resource

File:
1 edited

Legend:

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

    r9846 r9847  
    11/*!
    22 * @file resource.h
    3  * @brief Definition of a NewResource.
     3 * @brief Definition of a Resource.
    44*/
    55
     
    130130
    131131
    132   //! A NewResource is an Object, that can be loaded from Disk
     132
     133
     134  //! A Resource is an Object, that can be loaded from Disk
    133135  /**
    134    * The NewResource Hanldes the location and stores pointers to data that can be retrieved.
     136   * The Resource Hanldes the location and stores pointers to data that can be retrieved.
    135137   */
    136   class NewResource : virtual public BaseObject
     138  class Resource : virtual public BaseObject
    137139  {
    138     ObjectListDeclaration(NewResource);
     140    ObjectListDeclaration(Resource);
    139141
    140142  public:
    141     NewResource(Resources::Type* type);
    142     virtual ~NewResource();
     143    Resource(Resources::Type* type);
     144    virtual ~Resource();
    143145
    144146    /** @brief reloads the underlying resource */
     
    158160  private:
    159161    Resources::StorePointer*       _pointer;                         //!< Virtual Pointer to the ResourceData.
    160     Resources::Type*               _type;                            //!< Type of the NewResource.
     162    Resources::Type*               _type;                            //!< Type of the Resource.
    161163  };
    162164}
Note: See TracChangeset for help on using the changeset viewer.