Audacity 3.2.0
UndoTracks.h
Go to the documentation of this file.
1/**********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 @file UndoTracks.h
6
7 Paul Licameli
8
9 **********************************************************************/
10#ifndef __AUDACITY_UNDO_TRACKS__
11#define __AUDACITY_UNDO_TRACKS__
12
13class TrackList;
14struct UndoStackElem;
15
16namespace UndoTracks {
17TRACK_API TrackList *Find(const UndoStackElem &state);
18}
19
20#endif
A flat linked list of tracks supporting Add, Remove, Clear, and Contains, serialization of the list o...
Definition: Track.h:850
TRACK_API TrackList * Find(const UndoStackElem &state)
Definition: UndoTracks.cpp:47
Holds one item with description and time range for the UndoManager.
Definition: UndoManager.h:117