1 #ifndef PLAYABLETRACKS_H
2 #define PLAYABLETRACKS_H
7 #include "renderengine.inc"
10 class PlayableTracks
: public ArrayList
<Track
*>
13 PlayableTracks(RenderEngine
*renderengine
,
14 long current_position
, // Position in native units of tracks
19 // return 1 if the track is playable at the position
20 int is_playable(Track
*current_track
,
23 // return 1 if the track is in the list
24 int is_listed(Track
*track
);
26 RenderEngine
*renderengine
;