From 1a0d15d31031be08bf4645958456d52561879a63 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Thu, 22 Apr 2010 14:01:50 +0000 Subject: [PATCH] made more methods virtual git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1817 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/AmSession.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/AmSession.h b/core/AmSession.h index c3be659f..21e4257c 100644 --- a/core/AmSession.h +++ b/core/AmSession.h @@ -329,14 +329,14 @@ public: string* sdp_reply); /** send an UPDATE in the session */ - void sendUpdate(); + virtual void sendUpdate(); /** send a Re-INVITE (if connected) */ - void sendReinvite(bool updateSDP = true, const string& headers = ""); + virtual void sendReinvite(bool updateSDP = true, const string& headers = ""); /** send an INVITE */ - int sendInvite(const string& headers = ""); + virtual int sendInvite(const string& headers = ""); /** set the session on/off hold */ - void setOnHold(bool hold); + virtual void setOnHold(bool hold); /** * Destroy the session. @@ -344,7 +344,7 @@ public: * and added to the dead session list. * @see AmSessionContainer */ - void destroy(); + virtual void destroy(); /** * Signals the session it should stop.