mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-10 00:23:32 +02:00
Add some const qualifiers; define TrackListConstIterator
This commit is contained in:
@@ -35,7 +35,7 @@ class TimeTrack: public Track {
|
||||
* copy-constructor to encapsulate this.
|
||||
* @param orig The original track to copy from
|
||||
*/
|
||||
TimeTrack(TimeTrack &orig);
|
||||
TimeTrack(const TimeTrack &orig);
|
||||
|
||||
virtual ~TimeTrack();
|
||||
|
||||
@@ -131,7 +131,7 @@ class TimeTrack: public Track {
|
||||
* @param orig the TimeTrack to copy from
|
||||
*/
|
||||
void Init(const TimeTrack &orig);
|
||||
virtual Track *Duplicate();
|
||||
virtual Track *Duplicate() const;
|
||||
|
||||
friend class TrackFactory;
|
||||
|
||||
|
Reference in New Issue
Block a user