mirror of
https://github.com/oguzhaninan/Stacer.git
synced 2026-04-18 21:50:08 -04:00
21 lines
515 B
C++
21 lines
515 B
C++
#ifndef BYTE_TREE_WIDGET_H
|
|
#define BYTE_TREE_WIDGET_H
|
|
|
|
#include <QTreeWidgetItem>
|
|
#include <QWidget>
|
|
|
|
#include <Utils/format_util.h>
|
|
|
|
class ByteTreeWidget : public QTreeWidgetItem
|
|
{
|
|
public:
|
|
ByteTreeWidget(QTreeWidget* parent) : QTreeWidgetItem(parent) {}
|
|
ByteTreeWidget(QTreeWidgetItem* parent) : QTreeWidgetItem(parent) {}
|
|
|
|
void setValues(const QString &text, const quint64 &size, const QVariant &data);
|
|
|
|
virtual bool operator<(const QTreeWidgetItem &other) const;
|
|
};
|
|
|
|
#endif // BYTE_TREE_WIDGET_H
|