Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / content_audio.h
index f704fac58fa691faa92ab69f91bddf9bfd9e3f1b..c343865e39fa1d586f2df2af03ee84ee5e6d6703 100644 (file)
 
 */
 
+#ifndef DCPOMATIC_CONTENT_AUDIO_H
+#define DCPOMATIC_CONTENT_AUDIO_H
+
 /** @file  src/lib/content_audio.h
  *  @brief ContentAudio class.
  */
 
 #include "audio_buffers.h"
+#include "types.h"
 
 /** @class ContentAudio
  *  @brief A block of audio from a piece of content, with a timestamp as a frame within that content.
@@ -33,7 +37,7 @@ public:
                : audio (new AudioBuffers (0, 0))
                , frame (0)
        {}
-               
+
        ContentAudio (boost::shared_ptr<AudioBuffers> a, Frame f)
                : audio (a)
                , frame (f)
@@ -42,3 +46,5 @@ public:
        boost::shared_ptr<AudioBuffers> audio;
        Frame frame;
 };
+
+#endif