internal static void CopyOut(v_orderbyPolicyI_s from, ref DestinationOrderQosPolicy to)
 {
     if (to == null)
     {
         to = new DestinationOrderQosPolicy();
     }
     to.Kind = (DestinationOrderQosPolicyKind)from.v.kind;
 }
 internal static DDS.ReturnCode CopyIn(DestinationOrderQosPolicy from, ref v_orderbyPolicyI_s to)
 {
     DDS.ReturnCode result = DDS.ReturnCode.Ok;
     if (from != null)
     {
         to.v.kind = (V_ORDERBYKIND)from.Kind;
     }
     else
     {
         result = DDS.ReturnCode.BadParameter;
         ReportStack.Report(result, "DestinationOrderQosPolicy attribute may not be a null pointer.");
     }
     return(result);
 }
 internal static void CleanupIn(ref v_orderbyPolicyI_s to)
 {
 }