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.

20 lines
531 B

  1. // PageFact.cpp: implementation of the CPageFactory class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "StdAfx.h"
  5. #include "PageFact.h"
  6. #include "MainPage.h"
  7. #include "UserPage.h"
  8. #include "LogonPage.h"
  9. //////////////////////////////////////////////////////////////////////
  10. // ITaskPageFactory
  11. //////////////////////////////////////////////////////////////////////
  12. BEGIN_PAGE_MAP(CPageFactory)
  13. PAGE_ENTRY(CMainPage)
  14. PAGE_ENTRY(CUserPage)
  15. PAGE_ENTRY(CLogonPage)
  16. END_PAGE_MAP()