22 lines
512 B
C++
22 lines
512 B
C++
#ifndef _IMAGE_VXDNAME_HPP_
|
|
#define _IMAGE_VXDNAME_HPP_
|
|
#ifndef _COMMON_STRING_HPP_
|
|
#include <common/string.hpp>
|
|
#endif
|
|
|
|
class VxDName
|
|
{
|
|
public:
|
|
VxDName(void);;
|
|
VxDName(const VxDName &someVxDName);
|
|
VxDName(const String &entryName,WORD entryOrdinal);
|
|
VxDName &operator=(const VxDName &someVxDName);
|
|
const String &entryName(void)const;
|
|
void entryName(const String &entryName);
|
|
WORD entryOrdinal(void)const;
|
|
void entryOrdinal(WORD entryOrdinal);
|
|
private:
|
|
String mEntryName;
|
|
WORD mEntryOrdinal;
|
|
};
|
|
#endif |