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:
parent
6ef63790a9
commit
598003ea39
@ -34,8 +34,8 @@ public:
|
||||
private:
|
||||
Storage::FileHolder file_;
|
||||
|
||||
void virtual_reset();
|
||||
void get_next_pulses();
|
||||
void virtual_reset() override;
|
||||
void get_next_pulses() override;
|
||||
|
||||
bool current_level_;
|
||||
|
||||
|
@ -36,10 +36,10 @@ public:
|
||||
};
|
||||
|
||||
private:
|
||||
void virtual_reset();
|
||||
void virtual_reset() override;
|
||||
|
||||
void set_platform_type();
|
||||
TargetPlatform::Type target_platform_type();
|
||||
TargetPlatform::Type target_platform_type() override;
|
||||
TargetPlatform::Type platform_type_ = TargetPlatform::Acorn;
|
||||
|
||||
gzFile file_;
|
||||
@ -53,7 +53,7 @@ private:
|
||||
};
|
||||
|
||||
bool get_next_chunk(Chunk &);
|
||||
void get_next_pulses();
|
||||
void get_next_pulses() override;
|
||||
|
||||
void queue_implicit_bit_pattern(uint32_t length);
|
||||
void queue_explicit_bit_pattern(uint32_t length);
|
||||
|
Loading…
Reference in New Issue
Block a user