mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-20 15:31:10 +00:00
31 lines
525 B
C++
31 lines
525 B
C++
|
//
|
||
|
// UnformattedTrack.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 15/08/2017.
|
||
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef UnformattedTrack_hpp
|
||
|
#define UnformattedTrack_hpp
|
||
|
|
||
|
#include "Disk.hpp"
|
||
|
|
||
|
namespace Storage {
|
||
|
namespace Disk {
|
||
|
|
||
|
/*!
|
||
|
A subclass of @c Track with no contents. Just an index hole.
|
||
|
*/
|
||
|
class UnformattedTrack: public Track {
|
||
|
public:
|
||
|
Event get_next_event();
|
||
|
Time seek_to(const Time &time_since_index_hole);
|
||
|
Track *clone();
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif /* UnformattedTrack_hpp */
|