diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-07-05 15:22:00 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-07-05 15:22:56 +0200 |
| commit | 76e543bd7c85054ff857781707fa570f2b159360 (patch) | |
| tree | b3c18dd69a992f80375b29a1c4019b8445ffb8e7 /src/lib/shuffler.h | |
| parent | be436f229587905e89ac768b3c57b0e983cfe7fa (diff) | |
Use unique_ptr.
Diffstat (limited to 'src/lib/shuffler.h')
| -rw-r--r-- | src/lib/shuffler.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/lib/shuffler.h b/src/lib/shuffler.h index 2b37b70a1..476f571b4 100644 --- a/src/lib/shuffler.h +++ b/src/lib/shuffler.h @@ -19,14 +19,17 @@ */ -#include "types.h" +#ifndef DCPOMATIC_SHUFFLER_H +#define DCPOMATIC_SHUFFLER_H + + #include "content_video.h" +#include "types.h" #include <boost/signals2.hpp> struct shuffler_test5; - class Piece; @@ -48,3 +51,7 @@ private: boost::optional<ContentVideo> _last; static int const _max_size; }; + + +#endif + |
