Basic (untested) ebur128 (#368).
[dcpomatic.git] / src / lib / dcp_subtitle.h
index e15acca44ea95a3743dbf80312e4884134812c7a..9d6076f8284be813bcb20ac08f5c3577e9a5bfce 100644 (file)
 
 */
 
-#ifndef DCPOMATIC_SRC_LIB_DCP_SUBTITLE_H
-#define DCPOMATIC_SRC_LIB_DCP_SUBTITLE_H
+#ifndef DCPOMATIC_DCP_SUBTITLE_H
+#define DCPOMATIC_DCP_SUBTITLE_H
 
 #include <boost/shared_ptr.hpp>
 #include <boost/filesystem.hpp>
 
 namespace dcp {
-       class SubtitleContent;
+       class SubtitleAsset;
 }
 
 class DCPSubtitle
 {
 protected:
-       boost::shared_ptr<dcp::SubtitleContent> load (boost::filesystem::path) const;
+       boost::shared_ptr<dcp::SubtitleAsset> load (boost::filesystem::path) const;
 };
 
 #endif