diff -r d141fc1ad77b -r e61a04404bdf qtms/src/qtmsg729.cpp --- a/qtms/src/qtmsg729.cpp Tue Jul 06 14:48:59 2010 +0300 +++ b/qtms/src/qtmsg729.cpp Wed Aug 18 10:16:02 2010 +0300 @@ -23,31 +23,29 @@ using namespace TMS; QTMSG729Format::QTMSG729Format() - { - } +{ +} QTMSG729Format::~QTMSG729Format() - { - } +{ +} gint QTMSG729Format::SetVADMode(const gboolean aVad) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = static_cast (iFormat)->SetVADMode(aVad); - } + } return status; - } +} gint QTMSG729Format::GetVADMode(gboolean& aVad) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = static_cast (iFormat)->GetVADMode(aVad); - } + } return status; - } +} // End of file