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