daoimpl.h 1000 B

1234567891011121314151617181920212223242526272829303132333435
  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10. // Note: must include AFXDAO.H first
  11. /////////////////////////////////////////////////////////////////////////////
  12. // _AFX_DAO_STATE
  13. #undef AFX_DATA
  14. #define AFX_DATA
  15. class _AFX_DAO_STATE : public CNoTrackObject
  16. {
  17. public:
  18. // Handle initialization and cleanup of OLE and DAO
  19. _AFX_DAO_STATE();
  20. virtual ~_AFX_DAO_STATE();
  21. // MFC/DAO global data
  22. BOOL m_bOleInitialized;
  23. DAODBEngine* m_pDAODBEngine;
  24. CMapPtrToPtr m_mapWorkspaces;
  25. };
  26. #undef AFX_DATA
  27. #define AFX_DATA
  28. /////////////////////////////////////////////////////////////////////////////