1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-16 22:28:57 +00:00
CLK/Storage/Disk/DiskImage/Formats/2MG.cpp

18 lines
324 B
C++
Raw Normal View History

//
// 2MG.cpp
// Clock Signal
//
// Created by Thomas Harte on 23/11/2020.
// Copyright © 2020 Thomas Harte. All rights reserved.
//
#include "2MG.hpp"
using namespace Storage::Disk;
DiskImageHolderBase *Disk2MG::open(const std::string &file_name) {
(void)file_name;
throw Error::InvalidFormat;
return nullptr;
}