doubango/trunk/bindings/_common/RegistrationEvent.cxx

47 lines
1.3 KiB
C++
Raw Normal View History

2010-05-14 02:05:29 +00:00
/*
* Copyright (C) 2009 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou@yahoo.fr>
*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*
*/
#include "RegistrationEvent.h"
#include "RegistrationSession.h"
#include "Common.h"
RegistrationEvent::RegistrationEvent()
{
::RegistrationEvent(0, tsk_null, tsk_null);
}
RegistrationEvent::RegistrationEvent(short code, const char* phrase, RegistrationSession* session)
:SipEvent(code, phrase)
{
this->type = tsip_event_register;
this->session = (session);
}
RegistrationEvent::~RegistrationEvent()
{
}
const RegistrationSession* RegistrationEvent::getSession2()
{
return dyn_cast<const RegistrationSession*>(this->session);
}