Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / cinelerra / tracklist.h
blob63da4d3f593addba3c4b9f6a616e9db2fefa8258
1 #ifndef TRACKLIST_H
2 #define TRACKLIST_H
4 #include "patchbay.h"
5 #include "arraylist.h"
6 #include "tracks.h"
8 class TrackList : public ArrayList<Track*>
10 public:
11 TrackList(MWindow *mwindow);
13 get_playable_audio(long position, int reverse);
14 get_playable_video(long position, int reverse);
16 private:
17 get_playable_type(long position, int reverse, int data_type);
18 get_recordable_type(int data_type);
19 MWindow *mwindow;
24 #endif
26 // Local Variables:
27 // mode: C++
28 // c-file-style: "linux"
29 // End: