mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-21 16:11:11 +01:00
Remove WaveTrack.h from other headers
This commit is contained in:
32
src/WaveTrackLocation.h
Normal file
32
src/WaveTrackLocation.h
Normal file
@@ -0,0 +1,32 @@
|
||||
/**********************************************************************
|
||||
|
||||
Audacity: A Digital Audio Editor
|
||||
|
||||
WaveTrackLocation.h
|
||||
|
||||
Paul Licameli -- split from WaveTrack.h
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#ifndef __AUDACITY_WAVE_TRACK_LOCATION__
|
||||
#define __AUDACITY_WAVE_TRACK_LOCATION__
|
||||
|
||||
struct WaveTrackLocation {
|
||||
|
||||
enum LocationType {
|
||||
locationCutLine = 1,
|
||||
locationMergePoint
|
||||
};
|
||||
|
||||
// Position of track location
|
||||
double pos;
|
||||
|
||||
// Type of track location
|
||||
LocationType typ;
|
||||
|
||||
// Only for typ==locationMergePoint
|
||||
int clipidx1; // first clip (left one)
|
||||
int clipidx2; // second clip (right one)
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user