diff options
Diffstat (limited to 'win/C#/interop/EncodeProgressEventArgs.cs')
-rw-r--r-- | win/C#/interop/EncodeProgressEventArgs.cs | 36 |
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; }
}
}
|