Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
551 B

#ifndef __VRTTI_HPP
#define __VRTTI_HPP
#include "vStandard.h"
// <VDOC<CLASS=VRTTI><DESC=Supports simple, fast, runtime type identification><FAMILY=General Utility><AUTHOR=Todd Osborne ([email protected])>VDOC>
class VRTTI
{
public:
VRTTI(UINT nRTTI = 0)
{ m_nRTTI = nRTTI; }
virtual ~VRTTI()
{;}
operator UINT()
{ return m_nRTTI; }
// Get / Set members
UINT RTTI()
{ return m_nRTTI; }
UINT RTTI(UINT nRTTI)
{ m_nRTTI = nRTTI; return m_nRTTI; }
private:
// Embedded Members
UINT m_nRTTI;
};
#endif // __VRTTI_HPP