/* SPDX-FileCopyrightText: 2020 Gaël PORTAY SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef SFDISKGPTATTRIBUTES__H #define SFDISKGPTATTRIBUTES__H #include #include /** Sfdisk GPT Attributes helpers. @author Gaël PORTAY */ class SfdiskGptAttributes { public: static quint64 toULongLong(const QStringList& attrs); static QStringList toStringList(quint64 attrs); }; #endif