mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
Same legal entity, just a company name change. https://find-and-update.company-information.service.gov.uk/company/08207441/filing-history
22 lines
432 B
C++
22 lines
432 B
C++
#ifndef MACFILE_H
|
|
#define MACFILE_H
|
|
|
|
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
* Copyright (C) 2020 Raspberry Pi Ltd
|
|
*/
|
|
|
|
#include <QFile>
|
|
|
|
class MacFile : public QFile
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum authOpenResult {authOpenCancelled, authOpenSuccess, authOpenError };
|
|
|
|
MacFile(QObject *parent = nullptr);
|
|
virtual bool isSequential() const;
|
|
authOpenResult authOpen(const QByteArray &filename);
|
|
};
|
|
|
|
#endif // MACFILE_H
|