Remove old dvd test code.
[dcpomatic.git] / hacks / pretty-c++ / src / film.h
1 #include "ratio.h"
2
3 class Film
4 {
5 public:
6
7 private:
8         std::string _name;
9         std::string _content;
10         Ratio       _ratio;
11         bool        _dvd;
12         int         _dvd_title;
13         bool        _deinterlace;
14         int         _left_crop;
15         int         _right_crop;
16         int         _top_crop;
17         int         _bottom_crop;
18
19         int         _width;
20         int         _height;
21         float       _length;
22 };