//*************************************************************************** // // dabldbug.h - This file contains the ABL Debug Class header definitions // //---------------------------------------------------------------------------// // Copyright (C) Microsoft Corporation. All rights reserved. // //===========================================================================// #ifndef DABLDBUG_H #define DABLDBUG_H class WatchManager; class BreakPointManager; class Debugger; typedef BreakPointManager* BreakPointManagerPtr; typedef WatchManager* WatchManagerPtr; typedef Debugger* DebuggerPtr; #endif //***************************************************************************