]> git.sesse.net Git - kdenlive/blob - src/documentvideotrack.h
Reindent all source files
[kdenlive] / src / documentvideotrack.h
1 #ifndef DOCUMENTVIDEOTRACK_H
2 #define DOCUMENTVIDEOTRACK_H
3
4
5 #include "documenttrack.h"
6 #include "trackview.h"
7
8 class DocumentVideoTrack : public DocumentTrack {
9     Q_OBJECT
10
11 public:
12     DocumentVideoTrack(QDomElement xml, TrackView * view, QWidget *parent = 0);
13
14 protected:
15     //virtual void paintEvent(QPaintEvent * /*e*/);
16
17 private:
18     TrackView *m_trackView;
19 public slots:
20
21 };
22
23 #endif