languages/cpp/debugger/dbgcontroller.cpp
Go to the documentation of this file.00001 /*************************************************************************** 00002 begin : Sun Aug 8 1999 00003 copyright : (C) 1999 by John Birch 00004 email : jbb@kdevelop.org 00005 ***************************************************************************/ 00006 00007 /*************************************************************************** 00008 * * 00009 * This program is free software; you can redistribute it and/or modify * 00010 * it under the terms of the GNU General Public License as published by * 00011 * the Free Software Foundation; either version 2 of the License, or * 00012 * (at your option) any later version. * 00013 * * 00014 ***************************************************************************/ 00015 00016 #include "dbgcontroller.h" 00017 #include <kprocess.h> 00018 00019 /***************************************************************************/ 00020 00021 namespace GDBDebugger 00022 { 00023 00024 DbgController::DbgController() 00025 : dbgProcess_(0) 00026 { 00027 } 00028 00029 /***************************************************************************/ 00030 00031 DbgController::~DbgController() 00032 { 00033 delete dbgProcess_; 00034 } 00035 00036 /***************************************************************************/ 00037 00038 } 00039 00040 #include "dbgcontroller.moc"