From eed0242672c96b3323aa4ff46563bbaa0c089d43 Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 14 Mar 2015 19:45:53 +0000 Subject: [PATCH] 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 --- .../Interop/Json/Anamorphic/AnamorphicGeometry.cs | 2 +- .../Interop/Json/Anamorphic/AnamorphicResult.cs | 2 +- .../Interop/Json/Anamorphic/DestSettings.cs | 7 +++++-- .../Interop/Json/Anamorphic/SourceGeometry.cs | 5 ++++- 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 /// /// The geometry. /// - internal class AnamorphicGeometry + public class AnamorphicGeometry { /// /// 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 /// /// The anamorphic result. /// - internal class AnamorphicResult + public class AnamorphicResult { /// /// 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 @@ // -------------------------------------------------------------------------------------------------------------------- -// +// // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // @@ -14,8 +14,11 @@ namespace HandBrake.ApplicationServices.Interop.Json.Anamorphic /// /// The dest geometry. /// - internal class DestSettings + public class DestSettings { + /// + /// Initializes a new instance of the class. + /// 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 /// /// The source geometry. /// - internal class SourceGeometry + public class SourceGeometry { + /// + /// Initializes a new instance of the class. + /// public SourceGeometry() { this.PAR = new PAR(); -- 2.40.0