Parent Directory
|
Revision Log
|
Patch
--- trunk/gr2lib/core/coreclasses/apiversion/granny2apiversion.cs 2010/07/18 06:14:54 133 +++ trunk/gr2lib/core/coreclasses/apiversion/granny2apiversion.cs 2010/07/24 04:16:43 187 @@ -10,15 +10,32 @@ namespace gr2lib.core.apiversion { #region public class VersionType + /// <summary> + /// Iversiontype inteface + /// </summary> public interface Iversiontype { + /// <summary> + /// get/set the major + /// </summary> int major { get; set; } + /// <summary> + /// get/set the minor + /// </summary> int minor { get; set; } + /// <summary> + /// get/set the customization + /// </summary> int customization { get; set; } + /// <summary> + /// get/set the build + /// </summary> int build { get; set; } //string version { get; } } - + /// <summary> + /// versiontype class + /// </summary> public class versiontype : Iversiontype { /// <summary> @@ -68,31 +85,31 @@ /// </summary> private string version { get { return string.Format("{0}.{1}.{2}.{3}", major, minor, customization, build); } } private int _major; - [RefreshPropertiesAttribute(RefreshProperties.All)] /// <summary> /// Returns the Major of the Granny2 API Version (X.0.0.0) /// </summary> + [RefreshPropertiesAttribute(RefreshProperties.All)] public int major { get { return _major; } set { _major = value; } } private int _minor; - [RefreshPropertiesAttribute(RefreshProperties.All)] /// <summary> /// Returns the Minor of the Granny2 API Version (0.X.0.0) /// </summary> + [RefreshPropertiesAttribute(RefreshProperties.All)] public int minor { get { return _minor; } set { _minor = value; } } private int _customization; - [RefreshPropertiesAttribute(RefreshProperties.All)] /// <summary> /// Returns the Customization of the Granny2 API Version - Customization (0.0.X.0) /// </summary> + [RefreshPropertiesAttribute(RefreshProperties.All)] public int customization { get { return _customization; } set { _customization = value; } } private int _build; - [RefreshPropertiesAttribute(RefreshProperties.All)] /// <summary> /// Returns the Build of the Granny2 API Version (0.0.0.X) /// </summary> + [RefreshPropertiesAttribute(RefreshProperties.All)] public int build { get { return _build; } set { _build = value; } } #endregion }
ViewVC Help | |
Powered by ViewVC 1.1.22 |