diff options
author | sr55 <[email protected]> | 2007-12-24 18:43:10 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-12-24 18:43:10 +0000 |
commit | 9de854ea647f370c31bf3919a6c7377b317ea19f (patch) | |
tree | 1a4601df447243ee8d5d2b434656a4b163add1e5 /win/C#/Parsing | |
parent | 1b2e8b83a825a53accf571a11dada26f9a1de774 (diff) |
WinGui:
- Added GPL Licence comment at the top of each code file as required. (this may need to be changed later but will do for now)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1147 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Parsing')
-rw-r--r-- | win/C#/Parsing/AudioTrack.cs | 6 | ||||
-rw-r--r-- | win/C#/Parsing/Chapter.cs | 6 | ||||
-rw-r--r-- | win/C#/Parsing/DVD.cs | 6 | ||||
-rw-r--r-- | win/C#/Parsing/Parser.cs | 6 | ||||
-rw-r--r-- | win/C#/Parsing/Subtitle.cs | 6 | ||||
-rw-r--r-- | win/C#/Parsing/Title.cs | 6 |
6 files changed, 36 insertions, 0 deletions
diff --git a/win/C#/Parsing/AudioTrack.cs b/win/C#/Parsing/AudioTrack.cs index 2977a995c..22a5a1ba9 100644 --- a/win/C#/Parsing/AudioTrack.cs +++ b/win/C#/Parsing/AudioTrack.cs @@ -1,3 +1,9 @@ +/* AudioTrack.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/win/C#/Parsing/Chapter.cs b/win/C#/Parsing/Chapter.cs index f2d10f51e..0131916c6 100644 --- a/win/C#/Parsing/Chapter.cs +++ b/win/C#/Parsing/Chapter.cs @@ -1,3 +1,9 @@ +/* Chapter.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/win/C#/Parsing/DVD.cs b/win/C#/Parsing/DVD.cs index c06244ab3..c110c3e8e 100644 --- a/win/C#/Parsing/DVD.cs +++ b/win/C#/Parsing/DVD.cs @@ -1,3 +1,9 @@ +/* DVD.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.Windows.Forms;
diff --git a/win/C#/Parsing/Parser.cs b/win/C#/Parsing/Parser.cs index 7e00ddc2b..00dcedb84 100644 --- a/win/C#/Parsing/Parser.cs +++ b/win/C#/Parsing/Parser.cs @@ -1,3 +1,9 @@ +/* Parser.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/win/C#/Parsing/Subtitle.cs b/win/C#/Parsing/Subtitle.cs index defcb5b0e..b6908e28a 100644 --- a/win/C#/Parsing/Subtitle.cs +++ b/win/C#/Parsing/Subtitle.cs @@ -1,3 +1,9 @@ +/* Subtitle.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/win/C#/Parsing/Title.cs b/win/C#/Parsing/Title.cs index 0cfbff3f8..55babd20d 100644 --- a/win/C#/Parsing/Title.cs +++ b/win/C#/Parsing/Title.cs @@ -1,3 +1,9 @@ +/* Title.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.Drawing;
|