diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.PMR/Integration/ApplicationInformation.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.PMR/Integration/ApplicationInformation.cs | 188 |
1 files changed, 0 insertions, 188 deletions
diff --git a/Software/Visual_Studio/Tango.PMR/Integration/ApplicationInformation.cs b/Software/Visual_Studio/Tango.PMR/Integration/ApplicationInformation.cs deleted file mode 100644 index d637539f5..000000000 --- a/Software/Visual_Studio/Tango.PMR/Integration/ApplicationInformation.cs +++ /dev/null @@ -1,188 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: ApplicationInformation.proto -#pragma warning disable 1591, 0612, 3021 -#region Designer generated code - -using pb = global::Google.Protobuf; -using pbc = global::Google.Protobuf.Collections; -using pbr = global::Google.Protobuf.Reflection; -using scg = global::System.Collections.Generic; -namespace Tango.PMR.Integration { - - /// <summary>Holder for reflection information generated from ApplicationInformation.proto</summary> - public static partial class ApplicationInformationReflection { - - #region Descriptor - /// <summary>File descriptor for ApplicationInformation.proto</summary> - public static pbr::FileDescriptor Descriptor { - get { return descriptor; } - } - private static pbr::FileDescriptor descriptor; - - static ApplicationInformationReflection() { - byte[] descriptorData = global::System.Convert.FromBase64String( - string.Concat( - "ChxBcHBsaWNhdGlvbkluZm9ybWF0aW9uLnByb3RvEhVUYW5nby5QTVIuSW50", - "ZWdyYXRpb24iPgoWQXBwbGljYXRpb25JbmZvcm1hdGlvbhIPCgdWZXJzaW9u", - "GAEgASgJEhMKC1N0YXJ0dXBEYXRlGAIgASgJQiEKH2NvbS50d2luZS50YW5n", - "by5wbXIuaW50ZWdyYXRpb25iBnByb3RvMw==")); - descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { }, - new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Integration.ApplicationInformation), global::Tango.PMR.Integration.ApplicationInformation.Parser, new[]{ "Version", "StartupDate" }, null, null, null) - })); - } - #endregion - - } - #region Messages - public sealed partial class ApplicationInformation : pb::IMessage<ApplicationInformation> { - private static readonly pb::MessageParser<ApplicationInformation> _parser = new pb::MessageParser<ApplicationInformation>(() => new ApplicationInformation()); - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public static pb::MessageParser<ApplicationInformation> Parser { get { return _parser; } } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public static pbr::MessageDescriptor Descriptor { - get { return global::Tango.PMR.Integration.ApplicationInformationReflection.Descriptor.MessageTypes[0]; } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - pbr::MessageDescriptor pb::IMessage.Descriptor { - get { return Descriptor; } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public ApplicationInformation() { - OnConstruction(); - } - - partial void OnConstruction(); - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public ApplicationInformation(ApplicationInformation other) : this() { - version_ = other.version_; - startupDate_ = other.startupDate_; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public ApplicationInformation Clone() { - return new ApplicationInformation(this); - } - - /// <summary>Field number for the "Version" field.</summary> - public const int VersionFieldNumber = 1; - private string version_ = ""; - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public string Version { - get { return version_; } - set { - version_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); - } - } - - /// <summary>Field number for the "StartupDate" field.</summary> - public const int StartupDateFieldNumber = 2; - private string startupDate_ = ""; - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public string StartupDate { - get { return startupDate_; } - set { - startupDate_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public override bool Equals(object other) { - return Equals(other as ApplicationInformation); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public bool Equals(ApplicationInformation other) { - if (ReferenceEquals(other, null)) { - return false; - } - if (ReferenceEquals(other, this)) { - return true; - } - if (Version != other.Version) return false; - if (StartupDate != other.StartupDate) return false; - return true; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public override int GetHashCode() { - int hash = 1; - if (Version.Length != 0) hash ^= Version.GetHashCode(); - if (StartupDate.Length != 0) hash ^= StartupDate.GetHashCode(); - return hash; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public override string ToString() { - return pb::JsonFormatter.ToDiagnosticString(this); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public void WriteTo(pb::CodedOutputStream output) { - if (Version.Length != 0) { - output.WriteRawTag(10); - output.WriteString(Version); - } - if (StartupDate.Length != 0) { - output.WriteRawTag(18); - output.WriteString(StartupDate); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public int CalculateSize() { - int size = 0; - if (Version.Length != 0) { - size += 1 + pb::CodedOutputStream.ComputeStringSize(Version); - } - if (StartupDate.Length != 0) { - size += 1 + pb::CodedOutputStream.ComputeStringSize(StartupDate); - } - return size; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public void MergeFrom(ApplicationInformation other) { - if (other == null) { - return; - } - if (other.Version.Length != 0) { - Version = other.Version; - } - if (other.StartupDate.Length != 0) { - StartupDate = other.StartupDate; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public void MergeFrom(pb::CodedInputStream input) { - uint tag; - while ((tag = input.ReadTag()) != 0) { - switch(tag) { - default: - input.SkipLastField(); - break; - case 10: { - Version = input.ReadString(); - break; - } - case 18: { - StartupDate = input.ReadString(); - break; - } - } - } - } - - } - - #endregion - -} - -#endregion Designer generated code |
