diff options
author | ck <qt-info@nokia.com> | 2010-05-05 12:49:08 +0200 |
---|---|---|
committer | ck <qt-info@nokia.com> | 2010-05-05 12:51:21 +0200 |
commit | ef7c5fae607e0684d01213ab10d91ab8ae41d4ec (patch) | |
tree | f0fba43ddcaa1d6d867c43154bcd3dd00fd06d2c /src/plugins/debugger/gdb/abstractgdbprocess.cpp | |
parent | a945e96377cf0c8b72a96ce6de2bb5889abc62c2 (diff) | |
download | qt-creator-ef7c5fae607e0684d01213ab10d91ab8ae41d4ec.tar.gz |
Debugger: Support running GDB over SSH.
Reviewed-by: hjk
Diffstat (limited to 'src/plugins/debugger/gdb/abstractgdbprocess.cpp')
-rw-r--r-- | src/plugins/debugger/gdb/abstractgdbprocess.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/plugins/debugger/gdb/abstractgdbprocess.cpp b/src/plugins/debugger/gdb/abstractgdbprocess.cpp new file mode 100644 index 0000000000..55c6b67657 --- /dev/null +++ b/src/plugins/debugger/gdb/abstractgdbprocess.cpp @@ -0,0 +1,36 @@ +/************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +** +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** Commercial Usage +** +** Licensees holding valid Qt Commercial licenses may use this file in +** accordance with the Qt Commercial License Agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Nokia. +** +** GNU Lesser General Public License Usage +** +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at http://qt.nokia.com/contact. +** +**************************************************************************/ + +#include "abstractgdbprocess.h" + +namespace Debugger { +namespace Internal { + +} // namespace Internal +} // namespace Debugger |