Add support for \c in SSA.
[libsub.git] / src / stl_binary_writer.h
index 7dbf5a5cd724b88d7a7f3528030111e11270a35c..4986afbd212706f95b668af391f8bb20529eeccd 100644 (file)
 
 */
 
+/** @file  src/stl_binary_writer.h
+ *  @brief Writer for STL binary files.
+ */
+
+#ifndef LIBSUB_STL_BINARY_WRITER_H
+#define LIBSUB_STL_BINARY_WRITER_H
+
+#include "stl_binary_tables.h"
 #include <string>
 #include <boost/filesystem.hpp>
 
@@ -27,7 +35,7 @@ class Subtitle;
 extern void write_stl_binary (
        std::list<Subtitle> subtitles,
        float frames_per_second,
-       std::string language,
+       Language language,
        std::string original_programme_title,
        std::string original_episode_title,
        std::string translated_programme_title,
@@ -45,3 +53,5 @@ extern void write_stl_binary (
        );
 
 }
+
+#endif