summaryrefslogtreecommitdiffstats
path: root/kcachegrind/kcachegrind/dumpselection.h
diff options
context:
space:
mode:
Diffstat (limited to 'kcachegrind/kcachegrind/dumpselection.h')
-rw-r--r--kcachegrind/kcachegrind/dumpselection.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/kcachegrind/kcachegrind/dumpselection.h b/kcachegrind/kcachegrind/dumpselection.h
new file mode 100644
index 00000000..8c59d3e4
--- /dev/null
+++ b/kcachegrind/kcachegrind/dumpselection.h
@@ -0,0 +1,29 @@
+/**
+ * DumpSelection Dockable
+ * Part of KCachegrind
+ * 2003, Josef Weidendorfer (GPL V2)
+ *
+ * - Fast Selection of dumps to load/activate/use for comparing
+ * - Start a profile run from GUI (current supported: Callgrind)
+ * - View state of running profile runs.
+ *
+ */
+
+#ifndef DUMPSELECTION_H
+#define DUMPSELECTION_H
+
+#include "dumpselectionbase.h"
+#include "traceitemview.h"
+
+class DumpSelection : public DumpSelectionBase, public TraceItemView
+{
+ Q_OBJECT
+
+public:
+ DumpSelection( TopLevel*, QWidget* parent = 0, const char* name = 0);
+ virtual ~DumpSelection();
+
+ QWidget* widget() { return this; }
+};
+
+#endif