Merge 1.0 in.
[dcpomatic.git] / src / lib / filter.h
index 205d92482b3aa16d3fd134476335e6b6c77336e6..5971cd5cf86e3ebb8da4ee1d8914300b64253e9d 100644 (file)
  *  @brief A class to describe one of FFmpeg's video or post-processing filters.
  */
 
-#ifndef DVDOMATIC_FILTER_H
-#define DVDOMATIC_FILTER_H
+#ifndef DCPOMATIC_FILTER_H
+#define DCPOMATIC_FILTER_H
 
 #include <string>
 #include <vector>
+#include <boost/utility.hpp>
 
 /** @class Filter
  *  @brief A class to describe one of FFmpeg's video or post-processing filters.
  */
-class Filter
+class Filter : public boost::noncopyable
 {
 public:
        Filter (std::string, std::string, std::string, std::string, std::string);