2017-08-15 21:52:12 -04:00
|
|
|
//
|
|
|
|
// UnformattedTrack.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 15/08/2017.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-08-15 21:52:12 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef UnformattedTrack_hpp
|
|
|
|
#define UnformattedTrack_hpp
|
|
|
|
|
2017-09-22 22:39:23 -04:00
|
|
|
#include "Track.hpp"
|
2017-08-15 21:52:12 -04:00
|
|
|
|
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
A subclass of @c Track with no contents. Just an index hole.
|
|
|
|
*/
|
|
|
|
class UnformattedTrack: public Track {
|
|
|
|
public:
|
2020-01-23 22:57:51 -05:00
|
|
|
Event get_next_event() final;
|
2020-07-17 22:08:58 -04:00
|
|
|
float seek_to(float time_since_index_hole) final;
|
2020-01-23 22:57:51 -05:00
|
|
|
Track *clone() const final;
|
2017-08-15 21:52:12 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* UnformattedTrack_hpp */
|