diff -r b7b49303d0c0 -r 762d760dcfdf qtms/src/qtmsvolumeeffect.cpp --- a/qtms/src/qtmsvolumeeffect.cpp Fri Jul 23 17:48:16 2010 -0500 +++ b/qtms/src/qtmsvolumeeffect.cpp Fri Aug 06 17:13:32 2010 -0500 @@ -25,52 +25,48 @@ QTMSVolumeEffect::QTMSVolumeEffect() : iEffect(NULL) - { - } +{ +} QTMSVolumeEffect::~QTMSVolumeEffect() - { - delete (static_cast(iEffect)); - } +{ + delete (static_cast (iEffect)); +} gint QTMSVolumeEffect::GetLevel(guint& level) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iEffect) - { + if (iEffect) { status = static_cast (iEffect)->GetLevel(level); - } + } return status; - } +} gint QTMSVolumeEffect::SetLevel(const guint level) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iEffect) - { + if (iEffect) { status = static_cast (iEffect)->SetLevel(level); - } + } return status; - } +} gint QTMSVolumeEffect::GetMaxLevel(guint& level) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iEffect) - { + if (iEffect) { status = static_cast (iEffect)->GetMaxLevel(level); - } + } return status; - } +} gint QTMSVolumeEffect::GetType(QTMSSourceType& sourcetype) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iEffect) - { + if (iEffect) { status = static_cast (iEffect)->GetType(sourcetype); - } + } return status; - } +} // End of file