Dabldbug.h 731 B

123456789101112131415161718192021222324
  1. //***************************************************************************
  2. //
  3. // dabldbug.h - This file contains the ABL Debug Class header definitions
  4. //
  5. //---------------------------------------------------------------------------//
  6. // Copyright (C) Microsoft Corporation. All rights reserved. //
  7. //===========================================================================//
  8. #ifndef DABLDBUG_H
  9. #define DABLDBUG_H
  10. class WatchManager;
  11. class BreakPointManager;
  12. class Debugger;
  13. typedef BreakPointManager* BreakPointManagerPtr;
  14. typedef WatchManager* WatchManagerPtr;
  15. typedef Debugger* DebuggerPtr;
  16. #endif
  17. //***************************************************************************