Leaked source code of windows server 2003
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.
|
|
#ifndef __PP_BASE_H__
#define __PP_BASE_H__
#include <atlbase.h>
#include <shellapi.h> // atlwin.h needs DragAcceptFiles
#include <atlwin.h>
#include <atldlgs.h>
#include "resource.h"
class CBasePropertyPageInterface { public: // Constructor/destructor
CBasePropertyPageInterface( ) { m_previousIDD = m_nextIDD = 0; } virtual ~CBasePropertyPageInterface( ) {}
virtual long GetIDD ( ) = 0; virtual void SetPrevious ( long IDD ) { m_previousIDD = IDD; } virtual long GetPrevious ( ) { return m_previousIDD; } virtual void SetNext ( long IDD ) { m_nextIDD = IDD; } virtual long GetNext ( ) { return m_nextIDD; }
private: long m_previousIDD, m_nextIDD;
};
#endif
|