class HealthDataStandards::Export::Cat1R2

Public Class Methods

new() click to toggle source
Calls superclass method HealthDataStandards::Export::Cat1::new
# File lib/health-data-standards/export/cat_1_r2.rb, line 7
def initialize
  super("r2")
end

Public Instance Methods

export(patient, measures, start_date, end_date, header=nil, qrda_version=nil, cms_compatibility=false) click to toggle source
# File lib/health-data-standards/export/cat_1_r2.rb, line 11
def export(patient, measures, start_date, end_date, header=nil, qrda_version=nil, cms_compatibility=false)
  # QRDA version is always 'r2'
  super(patient, measures, start_date, end_date, header, 'r2', cms_compatibility)
end