Parent Directory
|
Revision Log
|
Patch
--- trunk/gr2lib/core/coretypes/implementation/ExporterInfo.cs 2010/07/15 22:18:29 81 +++ trunk/gr2lib/core/coretypes/implementation/ExporterInfo.cs 2010/07/15 23:36:04 82 @@ -9,12 +9,11 @@ public class ExporterInfo : IExporterInfo { - internal string exporterName; - internal int exporterMajorRevision; - internal int exporterMinorRevision; - internal int exporterCustomization; - internal int exporterBuildNumber; - internal IntPtr _ExtendedData; + private string exporterName; + private int exporterMajorRevision; + private int exporterMinorRevision; + private int exporterCustomization; + private int exporterBuildNumber; public ExporterInfo() @@ -53,12 +52,16 @@ public granny_int32 ExporterMinorRevision { get { return exporterMinorRevision; } set { exporterMinorRevision = value; } } public granny_int32 ExporterCustomization { get { return exporterCustomization; } set { exporterCustomization = value; } } public granny_int32 ExporterBuildNumber { get { return exporterBuildNumber; } set { exporterBuildNumber = value; } } - public IntPtr ExtendedData { get { return _ExtendedData; } set { _ExtendedData = value; } } #endregion #region INativePointer Members private IntPtr _NativePointer; public IntPtr NativePointer { get { return _NativePointer; } set { _NativePointer = value; } } #endregion + + #region IExtendedData Members + private IntPtr _ExtendedData; + public IntPtr ExtendedData { get { return _ExtendedData; } set { _ExtendedData = value; } } + #endregion } }
ViewVC Help | |
Powered by ViewVC 1.1.22 |