File indexing completed on 2024-04-28 05:41:22

0001 /*
0002     This file is part of KCachegrind.
0003 
0004     SPDX-FileCopyrightText: 2003 Josef Weidendorfer <Josef.Weidendorfer@gmx.de>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only
0007 */
0008 
0009 /*
0010  * DumpSelection Dockable
0011  *
0012  * - Fast Selection of dumps to load/activate/use for comparing
0013  * - Start a profile run from GUI (current supported: Callgrind)
0014  * - View state of running profile runs.
0015  *
0016  */
0017 
0018 #ifndef DUMPSELECTION_H
0019 #define DUMPSELECTION_H
0020 
0021 #include "dumpselectionbase.h"
0022 #include "traceitemview.h"
0023 
0024 class DumpSelection : public DumpSelectionBase, public TraceItemView
0025 {
0026   Q_OBJECT
0027 
0028 public:
0029   explicit DumpSelection( TopLevel*, QWidget* parent = 0, const char* name = 0);
0030   virtual ~DumpSelection();
0031 
0032   QWidget* widget() { return this; }
0033 };
0034 
0035 #endif