summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/ScanProgressEventArgs.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-08-29 15:09:32 +0000
committersr55 <[email protected]>2010-08-29 15:09:32 +0000
commit3010221f63e61b7da51d3870712365d0518b6f72 (patch)
tree78fb1959eaea096389cd674e3c64981d75a18ce5 /win/C#/interop/ScanProgressEventArgs.cs
parent8bcfcfa28c98665eab1eae9920f975ce803a0392 (diff)
WinGui:
- Update the Interop Code. - Update Growl Libary to 2.0.4.1 git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3500 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/interop/ScanProgressEventArgs.cs')
-rw-r--r--win/C#/interop/ScanProgressEventArgs.cs24
1 files changed, 4 insertions, 20 deletions
diff --git a/win/C#/interop/ScanProgressEventArgs.cs b/win/C#/interop/ScanProgressEventArgs.cs
index 2087e1d11..f7e3a0f67 100644
--- a/win/C#/interop/ScanProgressEventArgs.cs
+++ b/win/C#/interop/ScanProgressEventArgs.cs
@@ -1,29 +1,13 @@
-// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="ScanProgressEventArgs.cs" company="HandBrake Project (http://handbrake.fr)">
-// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
-// </copyright>
-// <summary>
-// Defines the ScanProgressEventArgs type.
-// </summary>
-// --------------------------------------------------------------------------------------------------------------------
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
namespace HandBrake.Interop
{
- using System;
-
- /// <summary>
- /// Scan Progress Event Arugments
- /// </summary>
public class ScanProgressEventArgs : EventArgs
{
- /// <summary>
- /// Gets or sets CurrentTitle.
- /// </summary>
public int CurrentTitle { get; set; }
-
- /// <summary>
- /// Gets or sets Titles.
- /// </summary>
public int Titles { get; set; }
}
}