diff -r b7b49303d0c0 -r 762d760dcfdf qtms/src/qtmsmicsourceimpl.cpp --- a/qtms/src/qtmsmicsourceimpl.cpp Fri Jul 23 17:48:16 2010 -0500 +++ b/qtms/src/qtmsmicsourceimpl.cpp Fri Aug 06 17:13:32 2010 -0500 @@ -23,46 +23,43 @@ using namespace TMS; QTMSMicSourceImpl::QTMSMicSourceImpl() - { - } +{ +} QTMSMicSourceImpl::~QTMSMicSourceImpl() - { - } +{ +} gint QTMSMicSourceImpl::Create(QTMSSource*& qsource, TMS::TMSSource*& tmssource) - { +{ gint ret(QTMS_RESULT_INSUFFICIENT_MEMORY); QTMSMicSourceImpl* self = new QTMSMicSourceImpl(); - if (self) - { + if (self) { ret = self->PostConstruct(); - if (ret != QTMS_RESULT_SUCCESS) - { + if (ret != QTMS_RESULT_SUCCESS) { delete self; self = NULL; - } + } self->iSource = tmssource; - } + } qsource = self; return ret; - } +} gint QTMSMicSourceImpl::PostConstruct() - { +{ gint ret(QTMS_RESULT_SUCCESS); return ret; - } +} gint QTMSMicSourceImpl::GetSource(TMS::TMSSource*& tmssource) - { +{ gint ret(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iSource) - { + if (iSource) { tmssource = iSource; ret = QTMS_RESULT_SUCCESS; - } + } return ret; - } +} // End of file