1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00
CLK/Storage/Disk/Track/UnformattedTrack.hpp
2024-01-16 23:34:46 -05:00

26 lines
449 B
C++

//
// UnformattedTrack.hpp
// Clock Signal
//
// Created by Thomas Harte on 15/08/2017.
// Copyright 2017 Thomas Harte. All rights reserved.
//
#pragma once
#include "Track.hpp"
namespace Storage::Disk {
/*!
A subclass of @c Track with no contents. Just an index hole.
*/
class UnformattedTrack: public Track {
public:
Event get_next_event() final;
float seek_to(float time_since_index_hole) final;
Track *clone() const final;
};
}