summaryrefslogtreecommitdiff
path: root/src/libs/ssh/ssh_global.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2022-05-13 01:08:44 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2022-05-23 18:21:28 +0000
commit9db911ae124bf32e42d4c20fb6ad8d404ff37292 (patch)
treebbcafcc1217f33c5f64efdddcec9b01a55102164 /src/libs/ssh/ssh_global.h
parent10ad238c165e744606a2e1e70b4942741a5a5b35 (diff)
downloadqt-creator-9db911ae124bf32e42d4c20fb6ad8d404ff37292.tar.gz
Get rid of Ssh lib
Move the rest to ProjectExplorer plugin. Change-Id: Id2f022359e7e01728779228ea1f7f0b05a81c8e4 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Diffstat (limited to 'src/libs/ssh/ssh_global.h')
-rw-r--r--src/libs/ssh/ssh_global.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/libs/ssh/ssh_global.h b/src/libs/ssh/ssh_global.h
deleted file mode 100644
index 0449e664e7..0000000000
--- a/src/libs/ssh/ssh_global.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt Creator.
-**
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-****************************************************************************/
-
-#pragma once
-
-#include <QtGlobal>
-
-#if defined(QTCSSH_LIBRARY)
-# define QSSH_EXPORT Q_DECL_EXPORT
-#elif defined(QTCSSH_STATIC_LIBRARY)
-# define QSSH_EXPORT
-#else
-# define QSSH_EXPORT Q_DECL_IMPORT
-#endif
-
-#ifdef WITH_TESTS
-# define QSSH_AUTOTEST_EXPORT QSSH_EXPORT
-#else
-# define QSSH_AUTOTEST_EXPORT
-#endif