2020-11-24 02:42:18 +00:00
|
|
|
//
|
|
|
|
// 2MG.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 23/11/2020.
|
|
|
|
// Copyright © 2020 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef _MG_hpp
|
|
|
|
#define _MG_hpp
|
|
|
|
|
|
|
|
#include "../DiskImage.hpp"
|
2022-08-26 20:38:10 +00:00
|
|
|
#include "../../../MassStorage/MassStorageDevice.hpp"
|
|
|
|
|
2020-11-24 02:42:18 +00:00
|
|
|
#include "../../../FileHolder.hpp"
|
|
|
|
|
2022-08-26 20:38:10 +00:00
|
|
|
#include <variant>
|
|
|
|
|
2020-11-24 02:42:18 +00:00
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
2MG is slightly special because it's just a container format; there's a brief header and then
|
|
|
|
the contents are some other file format — either MacintoshIMG or AppleDSK.
|
|
|
|
|
|
|
|
Therefore it supplies a factory method and will actually return one of those.
|
|
|
|
|
|
|
|
TODO: should I generalise on factory methods? Is this likely to occur again?
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Disk2MG {
|
|
|
|
public:
|
2022-08-26 20:38:10 +00:00
|
|
|
using DiskOrMassStorageDevice = std::variant<nullptr_t, DiskImageHolderBase *, Storage::MassStorage::MassStorageDevice *>;
|
|
|
|
static DiskOrMassStorageDevice open(const std::string &file_name);
|
2020-11-24 02:42:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _MG_hpp */
|