summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Interop
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-03-14 19:45:53 +0000
committersr55 <[email protected]>2015-03-14 19:45:53 +0000
commiteed0242672c96b3323aa4ff46563bbaa0c089d43 (patch)
tree1f74ce1fa5b95861b112b5a39f6633884b99d352 /win/CS/HandBrake.ApplicationServices/Interop
parentabcbdbca5fc445a4eac9024a41d803cd4e62f9ab (diff)
WinGui: Make the anamorphic objects in the services library public.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6988 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/AnamorphicGeometry.cs2
-rw-r--r--win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/AnamorphicResult.cs2
-rw-r--r--win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/DestSettings.cs7
-rw-r--r--win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/SourceGeometry.cs5
4 files changed, 11 insertions, 5 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/AnamorphicGeometry.cs b/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/AnamorphicGeometry.cs
index 993d54657..fc7319d70 100644
--- a/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/AnamorphicGeometry.cs
+++ b/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/AnamorphicGeometry.cs
@@ -12,7 +12,7 @@ namespace HandBrake.ApplicationServices.Interop.Json.Anamorphic
/// <summary>
/// The geometry.
/// </summary>
- internal class AnamorphicGeometry
+ public class AnamorphicGeometry
{
/// <summary>
/// Gets or sets the dest geometry.
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/AnamorphicResult.cs b/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/AnamorphicResult.cs
index ab28a8c32..d539cb478 100644
--- a/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/AnamorphicResult.cs
+++ b/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/AnamorphicResult.cs
@@ -12,7 +12,7 @@ namespace HandBrake.ApplicationServices.Interop.Json.Anamorphic
/// <summary>
/// The anamorphic result.
/// </summary>
- internal class AnamorphicResult
+ public class AnamorphicResult
{
/// <summary>
/// Gets or sets the height.
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/DestSettings.cs b/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/DestSettings.cs
index f377892e9..cc9b9c53d 100644
--- a/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/DestSettings.cs
+++ b/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/DestSettings.cs
@@ -1,5 +1,5 @@
// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="DestGeometry.cs" company="HandBrake Project (http://handbrake.fr)">
+// <copyright file="DestSettings.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>
@@ -14,8 +14,11 @@ namespace HandBrake.ApplicationServices.Interop.Json.Anamorphic
/// <summary>
/// The dest geometry.
/// </summary>
- internal class DestSettings
+ public class DestSettings
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref="DestSettings"/> class.
+ /// </summary>
public DestSettings()
{
this.Geometry = new Geometry();
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/SourceGeometry.cs b/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/SourceGeometry.cs
index 2496093e9..c4ed79041 100644
--- a/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/SourceGeometry.cs
+++ b/win/CS/HandBrake.ApplicationServices/Interop/Json/Anamorphic/SourceGeometry.cs
@@ -12,8 +12,11 @@ namespace HandBrake.ApplicationServices.Interop.Json.Anamorphic
/// <summary>
/// The source geometry.
/// </summary>
- internal class SourceGeometry
+ public class SourceGeometry
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref="SourceGeometry"/> class.
+ /// </summary>
public SourceGeometry()
{
this.PAR = new PAR();