// // 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" #include "../../../FileHolder.hpp" 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: static DiskImageHolderBase *open(const std::string &file_name); }; } } #endif /* _MG_hpp */