1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-11 15:49:38 +00:00

Continue marking override.

This commit is contained in:
Thomas Harte 2024-12-03 21:18:26 -05:00
parent 6ef63790a9
commit 598003ea39
2 changed files with 5 additions and 5 deletions

View File

@ -34,8 +34,8 @@ public:
private: private:
Storage::FileHolder file_; Storage::FileHolder file_;
void virtual_reset(); void virtual_reset() override;
void get_next_pulses(); void get_next_pulses() override;
bool current_level_; bool current_level_;

View File

@ -36,10 +36,10 @@ public:
}; };
private: private:
void virtual_reset(); void virtual_reset() override;
void set_platform_type(); void set_platform_type();
TargetPlatform::Type target_platform_type(); TargetPlatform::Type target_platform_type() override;
TargetPlatform::Type platform_type_ = TargetPlatform::Acorn; TargetPlatform::Type platform_type_ = TargetPlatform::Acorn;
gzFile file_; gzFile file_;
@ -53,7 +53,7 @@ private:
}; };
bool get_next_chunk(Chunk &); bool get_next_chunk(Chunk &);
void get_next_pulses(); void get_next_pulses() override;
void queue_implicit_bit_pattern(uint32_t length); void queue_implicit_bit_pattern(uint32_t length);
void queue_explicit_bit_pattern(uint32_t length); void queue_explicit_bit_pattern(uint32_t length);