001package org.hl7.fhir.convertors.conv43_50.datatypes43_50.general43_50;
002
003import org.hl7.fhir.exceptions.FHIRException;
004
005public class Count43_50 {
006  public static org.hl7.fhir.r5.model.Count convertCount(org.hl7.fhir.r4b.model.Count src) throws FHIRException {
007    if (src == null) return null;
008    org.hl7.fhir.r5.model.Count tgt = new org.hl7.fhir.r5.model.Count();
009    Quantity43_50.copyQuantity(src, tgt);
010    return tgt;
011  }
012
013  public static org.hl7.fhir.r4b.model.Count convertCount(org.hl7.fhir.r5.model.Count src) throws FHIRException {
014    if (src == null) return null;
015    org.hl7.fhir.r4b.model.Count tgt = new org.hl7.fhir.r4b.model.Count();
016    Quantity43_50.copyQuantity(src, tgt);
017    return tgt;
018  }
019}