diff -r b7b49303d0c0 -r 762d760dcfdf qtms/src/qtmsg729.cpp --- a/qtms/src/qtmsg729.cpp Fri Jul 23 17:48:16 2010 -0500 +++ b/qtms/src/qtmsg729.cpp Fri Aug 06 17:13:32 2010 -0500 @@ -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