Resource.pkg 368 B

123456789101112131415
  1. $#include "Resource.h"
  2. /// Base class for resources.
  3. class Resource
  4. {
  5. public:
  6. /// Set name.
  7. void SetName(const String& name);
  8. /// Return name.
  9. const String& GetName() const;
  10. /// Return name hash.
  11. StringHash GetNameHash() const;
  12. /// Return memory use in bytes, possibly approximate.
  13. unsigned GetMemoryUse() const;
  14. };