Initial
This commit is contained in:
22
image/VXDNAME.HPP
Normal file
22
image/VXDNAME.HPP
Normal file
@@ -0,0 +1,22 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user