14 #include "jingledtmf.h"
26 DTMF::DTMF(
const std::string& code,
int volume,
int duration )
27 : m_code( code ), m_volume( volume ), m_duration( duration )
32 : m_volume( 63 ), m_duration( 0 )
38 m_volume = strtol( tag->
findAttribute(
"volume" ).c_str(), 0, 10 );
39 m_duration = strtol( tag->
findAttribute(
"duration" ).c_str(), 0, 10 );
53 Tag* t =
new Tag(
"dtmf" );