mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
14 lines
241 B
C
14 lines
241 B
C
|
#pragma once
|
||
|
|
||
|
#include <optional>
|
||
|
|
||
|
#include <QString>
|
||
|
|
||
|
class QAbstractItemModel;
|
||
|
|
||
|
struct ModelUtils
|
||
|
{
|
||
|
static std::optional<int> findRole(const QByteArray &role,
|
||
|
const QAbstractItemModel *model);
|
||
|
};
|