aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangcodemodel/clangdmemoryusagewidget.h
blob: 08b668ac43e5a0060863bf6a1f639f1764e8c62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QCoreApplication>
#include <QWidget>

namespace ClangCodeModel::Internal {
class ClangdClient;

class ClangdMemoryUsageWidget : public QWidget
{
    Q_DECLARE_TR_FUNCTIONS(ClangCodeModel)
public:
    explicit ClangdMemoryUsageWidget(ClangdClient *client);
    ~ClangdMemoryUsageWidget();

    class Private;
    Private * const d;
};

} // namespace ClangCodeModel::Internal