summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/EncodeProgressEventArgs.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/EncodeProgressEventArgs.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/EncodeProgressEventArgs.cs')
-rw-r--r--win/C#/interop/EncodeProgressEventArgs.cs36
1 files changed, 4 insertions, 32 deletions
diff --git a/win/C#/interop/EncodeProgressEventArgs.cs b/win/C#/interop/EncodeProgressEventArgs.cs
index 7241104ba..7f08595a7 100644
--- a/win/C#/interop/EncodeProgressEventArgs.cs
+++ b/win/C#/interop/EncodeProgressEventArgs.cs
@@ -1,44 +1,16 @@
-// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="EncodeProgressEventArgs.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 EncodeProgressEventArgs type.
-// </summary>
-// --------------------------------------------------------------------------------------------------------------------
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
namespace HandBrake.Interop
{
- using System;
-
- /// <summary>
- /// Encode Progress Event Arguments
- /// </summary>
public class EncodeProgressEventArgs : EventArgs
{
- /// <summary>
- /// Gets or sets FractionComplete.
- /// </summary>
public float FractionComplete { get; set; }
-
- /// <summary>
- /// Gets or sets CurrentFrameRate.
- /// </summary>
public float CurrentFrameRate { get; set; }
-
- /// <summary>
- /// Gets or sets AverageFrameRate.
- /// </summary>
public float AverageFrameRate { get; set; }
-
- /// <summary>
- /// Gets or sets EstimatedTimeLeft.
- /// </summary>
public TimeSpan EstimatedTimeLeft { get; set; }
-
- /// <summary>
- /// Gets or sets Pass.
- /// </summary>
public int Pass { get; set; }
}
}