diff options
Diffstat (limited to 'languages/cpp/debugger/dbgcontroller.cpp')
-rw-r--r-- | languages/cpp/debugger/dbgcontroller.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/languages/cpp/debugger/dbgcontroller.cpp b/languages/cpp/debugger/dbgcontroller.cpp new file mode 100644 index 00000000..6ca94543 --- /dev/null +++ b/languages/cpp/debugger/dbgcontroller.cpp @@ -0,0 +1,40 @@ +/*************************************************************************** + begin : Sun Aug 8 1999 + copyright : (C) 1999 by John Birch + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#include "dbgcontroller.h" +#include <kprocess.h> + +/***************************************************************************/ + +namespace GDBDebugger +{ + +DbgController::DbgController() + : dbgProcess_(0) +{ +} + +/***************************************************************************/ + +DbgController::~DbgController() +{ + delete dbgProcess_; +} + +/***************************************************************************/ + +} + +#include "dbgcontroller.moc" |