~ubuntu-branches/ubuntu/trusty/aegisub/trusty

« back to all changes in this revision

Viewing changes to src/subtitle_format_ebu3264.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Reichel
  • Date: 2012-03-16 22:58:00 UTC
  • Revision ID: package-import@ubuntu.com-20120316225800-yfb8h9e5n04rk46a
Tags: upstream-2.1.9
ImportĀ upstreamĀ versionĀ 2.1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) 2011 Niels Martin Hansen <nielsm@aegisub.org>
 
2
//
 
3
// Permission to use, copy, modify, and distribute this software for any
 
4
// purpose with or without fee is hereby granted, provided that the above
 
5
// copyright notice and this permission notice appear in all copies.
 
6
//
 
7
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 
8
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 
9
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 
10
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 
11
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 
12
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 
13
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
14
//
 
15
// Aegisub Project http://www.aegisub.org/
 
16
 
 
17
 
 
18
// This implements support for the EBU tech 3264 (1991) subtitling data exchange format.
 
19
// Work on support for this format was sponsored by Bandai.
 
20
 
 
21
 
 
22
#pragma once
 
23
 
 
24
#include "subtitle_format.h"
 
25
 
 
26
class Ebu3264SubtitleFormat : public SubtitleFormat {
 
27
public:
 
28
        wxString GetName();
 
29
        wxArrayString GetWriteWildcards();
 
30
        bool CanWriteFile(wxString filename);
 
31
        void WriteFile(wxString filename,wxString encoding);
 
32
};