1#ifndef ULT_RESOURCE_NAME_H_INCLUDED
2#define ULT_RESOURCE_NAME_H_INCLUDED
26 std::string
GetName()
const {
return mName; }
35 void SetName(
const std::string& name) { mName = name; }
39 void SetIndex(
const int index) { mIndex = index; }
46 mName == resName.mName &&
47 mIndex == resName.mIndex;
std::string GetName() const
Definition ResourceName.h:26
int GetIndex() const
Definition ResourceName.h:30
bool operator==(const ResourceName &resName)
Definition ResourceName.h:44
void SetName(const std::string &name)
Definition ResourceName.h:35
ResourceName()
Definition ResourceName.h:18
void SetIndex(const int index)
Definition ResourceName.h:39