reSIProcate/DialogUsageManager  9680
DumFeature.cxx
Go to the documentation of this file.
00001 #include "resip/dum/DialogUsageManager.hxx"
00002 #include "resip/stack/Message.hxx"
00003 #include "resip/dum/DumFeature.hxx"
00004 #include "resip/dum/TargetCommand.hxx"
00005 #include "rutil/WinLeakCheck.hxx"
00006 
00007 using namespace resip;
00008 
00009 
00010 DumFeature::DumFeature(DialogUsageManager& dum, TargetCommand::Target& target) 
00011    : mDum(dum), mTarget(target)
00012 {
00013 }
00014 
00015 DumFeature::~DumFeature()
00016 {
00017 }   
00018 
00019 void DumFeature::postCommand(std::auto_ptr<Message> message)
00020 {
00021    mDum.post(new TargetCommand(mTarget, message));
00022 }