Line data Source code
1 : #include "cellcontents.hpp" 2 : 3 : namespace qtreports 4 : { 5 : namespace detail 6 : { 7 9 : CellContents::CellContents() {} 8 18 : CellContents::~CellContents() {} 9 : 10 9 : void CellContents::setTextField(const TextFieldPtr &textField) 11 : { 12 9 : m_textField = textField; 13 9 : } 14 : 15 645 : const TextFieldPtr CellContents::getTextField() const 16 : { 17 645 : return m_textField; 18 : } 19 : } 20 : }