~ubuntu-branches/ubuntu/wily/aegisub/wily-proposed

« back to all changes in this revision

Viewing changes to src/subtitle_format_encore.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Reichel, Pascal De Vuyst, Juan Picca, Sebastian Reichel
  • Date: 2015-08-04 21:40:50 UTC
  • mfrom: (5.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150804214050-y2aghm9vdksoc8t7
Tags: 3.2.2+dfsg-1
[ Pascal De Vuyst ]
* Fix Typo in package description (Closes: #739219)

[ Juan Picca ]
* Add patch to fix reproducible build (Closes: #789728)

[ Sebastian Reichel ]
* New upstream release
 - remove vendor directory from orig tarball
* Update Debian Standards Version to 3.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
#include "subtitle_format.h"
36
36
 
37
 
class EncoreSubtitleFormat : public SubtitleFormat {
 
37
class EncoreSubtitleFormat final : public SubtitleFormat {
38
38
public:
39
39
        EncoreSubtitleFormat();
40
40
        std::vector<std::string> GetWriteWildcards() const override;
41
 
        void WriteFile(const AssFile *src, agi::fs::path const& filename, std::string const&) const override;
 
41
        void WriteFile(const AssFile *src, agi::fs::path const& filename, agi::vfr::Framerate const& fps, std::string const&) const override;
42
42
};