Sprinkle some constness on CResourceDirectoryEntry

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6606 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2015-09-10 12:14:20 +00:00
parent fed52fac19
commit 757d16f937
2 changed files with 18 additions and 18 deletions

View file

@ -233,16 +233,16 @@ public:
CResourceDirectoryEntry(const WINWCHAR* szName, CResourceDataEntry* rdeData);
virtual ~CResourceDirectoryEntry();
bool HasName();
WINWCHAR* GetName();
int GetNameLength();
bool HasName() const;
const WINWCHAR* GetName() const;
int GetNameLength() const;
WORD GetId();
WORD GetId() const;
bool IsDataDirectory();
CResourceDirectory* GetSubDirectory();
bool IsDataDirectory() const;
CResourceDirectory* GetSubDirectory() const;
CResourceDataEntry* GetDataEntry();
CResourceDataEntry* GetDataEntry() const;
ULONG_PTR m_ulWrittenAt;