File indexing completed on 2024-05-12 05:48:28

0001 /*
0002     SPDX-FileCopyrightText: 2020 Gaël PORTAY <gael.portay@collabora.com>
0003 
0004     SPDX-License-Identifier: GPL-3.0-or-later
0005 */
0006 
0007 #ifndef SFDISKGPTATTRIBUTES__H
0008 #define SFDISKGPTATTRIBUTES__H
0009 
0010 #include <QtGlobal>
0011 #include <QStringList>
0012 
0013 /** Sfdisk GPT Attributes helpers.
0014     @author Gaël PORTAY <gael.portay@collabora.com>
0015 */
0016 class SfdiskGptAttributes
0017 {
0018 public:
0019     static quint64 toULongLong(const QStringList& attrs);
0020     static QStringList toStringList(quint64 attrs);
0021 };
0022 
0023 #endif