mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-21 17:35:20 +01:00
Move source files to /src
This commit is contained in:
parent
4daff1ba79
commit
033ff07abf
2685 changed files with 9 additions and 7 deletions
22
src/mac/macfile.h
Normal file
22
src/mac/macfile.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue