diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-17 00:24:13 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-17 00:24:13 +0000 |
| commit | 9db7ed5f6499de903313a85d59bb70302e97e7ff (patch) | |
| tree | b2eb84e0e910af55b76c9985ba2c35309a51d8d0 /src/lib/options.h | |
| parent | f35b2a637ba82e39eb81e030c2e112185349cac5 (diff) | |
shared_ptr is a bit excessive for DecodeOptions.
Diffstat (limited to 'src/lib/options.h')
| -rw-r--r-- | src/lib/options.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/lib/options.h b/src/lib/options.h index 2f8733507..2cd7dffde 100644 --- a/src/lib/options.h +++ b/src/lib/options.h @@ -17,16 +17,13 @@ */ +#ifndef DVDOMATIC_OPTIONS_H +#define DVDOMATIC_OPTIONS_H + /** @file src/options.h - * @brief Options for a transcoding operation. + * @brief Options for a decoding operation. */ -#include <string> -#include <iomanip> -#include <sstream> -#include <boost/optional.hpp> -#include "util.h" - class DecodeOptions { public: @@ -40,3 +37,5 @@ public: bool decode_subtitles; bool video_sync; }; + +#endif |
