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.

31 lines
646 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1996 - 1999.
  5. //
  6. // File: browser.hxx
  7. //
  8. // Contents:
  9. //
  10. // History: 15 Aug 1996 DLee Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #pragma once
  14. class Model;
  15. class View;
  16. class Control;
  17. #include "brdoc.hxx"
  18. #include "brmodel.hxx"
  19. #include "brview.hxx"
  20. #include "brctrl.hxx"
  21. class CBrowseWindow
  22. {
  23. public:
  24. View TheBrowseView;
  25. Model TheBrowseModel;
  26. Control TheBrowseController;
  27. };