class RQRCode::Export::HTML::Cell

def as_html

def as_html
  "<td class=\"#{html_class}\"></td>"
end

def html_class

def html_class
  qr.checked?(row_index, col_index) ? "black" : "white"
end