using System; using System.Collections.Generic; using System.Linq; using System.Text; using HeuristicLab.Core; using HeuristicLab.Data; namespace HeuristicLab.Operators.MPISupport.BinaryTransport { [Serializable] class IntValueTransfer { public int Value { get; set; } public static IntValueTransfer Convert(IntValue item) { IntValueTransfer result = new IntValueTransfer(); result.Value = item.Value; return result; } public static IntValue Convert(IntValueTransfer item) { IntValue result = new IntValue(); result.Value = item.Value; return result; } } }