aboutsummaryrefslogtreecommitdiff
path: root/lib/configuration/qt_specialization.h
blob: af8466e5aa9b7470e44b2b9f145505f0a61e15ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <QAction>
#include <QString>
#include <QStringList>

template <>
[[nodiscard]] std::optional<QString> Configuration::value(const char *path) const;
template <>
[[nodiscard]] std::optional<QStringList> Configuration::value(const char *path) const;

template <>
QAction &Configuration::shortcut(QAction &, const char *) const;
template <>
QKeySequence &Configuration::shortcut(QKeySequence &, const char *) const;