Line data Source code
1 : #include "querystring.hpp" 2 : 3 : namespace qtreports { 4 : namespace detail { 5 : 6 0 : QueryString::QueryString() {} 7 : 8 0 : QueryString::~QueryString() {} 9 : 10 0 : void QueryString::setText( const QString & text ) { 11 0 : m_text = text; 12 0 : } 13 : 14 0 : const QString QueryString::getText() const { 15 0 : return m_text; 16 : } 17 : 18 : } 19 : }