From 462902f22a930c52d6d4ac4ac9097d078108b568 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 16 Dec 2015 20:35:18 +0000 Subject: Missing install target. --- src/wscript | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/wscript b/src/wscript index 6afe1d9..a054a91 100644 --- a/src/wscript +++ b/src/wscript @@ -50,6 +50,7 @@ def build(bld): raw_subtitle.h reader.h stl_binary_tables.h + stl_binary_reader.h stl_binary_writer.h stl_text_reader.h sub_time.h -- cgit v1.2.3 From 5877be91301e5dd54ca125c0acd7bfb1ecc3dcd6 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 16 Dec 2015 20:35:54 +0000 Subject: No-op; remove trailing whitespace. --- src/dcp_reader.h | 6 +++--- src/font_size.h | 12 ++++++------ src/raw_subtitle.h | 6 +++--- src/reader.h | 2 +- src/reader_factory.cc | 2 +- src/smpte_dcp_reader.cc | 8 ++++---- src/stl_binary_tables.cc | 10 +++++----- src/stl_binary_tables.h | 6 +++--- src/stl_binary_writer.cc | 20 ++++++++++---------- src/sub_time.h | 10 +++++----- src/subtitle.cc | 2 +- src/subtitle.h | 10 +++++----- src/vertical_position.cc | 2 +- src/vertical_position.h | 4 ++-- src/vertical_reference.cc | 2 +- src/vertical_reference.h | 2 +- src/xml.h | 6 +++--- test/stl_binary_writer_test.cc | 4 ++-- test/stl_text_reader_test.cc | 14 +++++++------- test/time_test.cc | 2 +- test/vertical_position_test.cc | 6 +++--- 21 files changed, 68 insertions(+), 68 deletions(-) (limited to 'src') diff --git a/src/dcp_reader.h b/src/dcp_reader.h index f749f82..82a211c 100644 --- a/src/dcp_reader.h +++ b/src/dcp_reader.h @@ -38,7 +38,7 @@ namespace dcp { */ class DCPReader : public Reader { -protected: +protected: struct ParseState { std::list > font_nodes; @@ -49,11 +49,11 @@ protected: void parse_common (cxml::NodePtr root, boost::optional tcr); std::string _id; - + private: void parse_node (xmlpp::Node const * node, ParseState& parse_state, boost::optional tcr); void maybe_add_subtitle (std::string text, ParseState const & parse_state); - + std::string _reel_number; std::string _language; }; diff --git a/src/font_size.h b/src/font_size.h index 6f4f8a5..6439c8f 100644 --- a/src/font_size.h +++ b/src/font_size.h @@ -36,7 +36,7 @@ public: void set_proportional (float p) { _proportional = p; } - + void set_points (int p) { _points = p; } @@ -44,20 +44,20 @@ public: boost::optional proportional () const { return _proportional; } - + boost::optional points () const { return _points; } - + float proportional (int screen_height_in_points) const; int points (int screen_height_in_points) const; - -private: + +private: /** as a proportion of screen height */ boost::optional _proportional; /** in points */ boost::optional _points; - + }; } diff --git a/src/raw_subtitle.h b/src/raw_subtitle.h index a27329a..2a202c1 100644 --- a/src/raw_subtitle.h +++ b/src/raw_subtitle.h @@ -54,7 +54,7 @@ public: boost::optional effect; boost::optional effect_colour; - + Colour colour; bool bold; ///< true to use a bold version of font bool italic; ///< true to use an italic version of font @@ -67,12 +67,12 @@ public: Time from; /** to time */ Time to; - + boost::optional