C++11 tidying.
[dcpomatic.git] / src / lib / audio_processor.h
index e2f1c48ebf6eefb5aa456de185f014ee7787e8d3..ca80c92b2436b8a10009236289713614cea5b554 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 /** @file  src/lib/audio_processor.h
  *  @brief AudioProcessor class.
  */
 
+
 #ifndef DCPOMATIC_AUDIO_PROCESSOR_H
 #define DCPOMATIC_AUDIO_PROCESSOR_H
 
+
 #include "types.h"
 #include <list>
 #include <string>
 #include <vector>
 
+
 class AudioBuffers;
 class AudioMapping;
 
+
 /** @class AudioProcessor
  *  @brief A parent class for processors of audio data.
  *
@@ -70,4 +75,5 @@ private:
        static std::list<AudioProcessor const *> _non_experimental;
 };
 
+
 #endif