git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1817 8eb893ce-cfd4-0310-b710-fb5ebe64c474
... | ... |
@@ -329,14 +329,14 @@ public: |
329 | 329 |
string* sdp_reply); |
330 | 330 |
|
331 | 331 |
/** send an UPDATE in the session */ |
332 |
- void sendUpdate(); |
|
332 |
+ virtual void sendUpdate(); |
|
333 | 333 |
/** send a Re-INVITE (if connected) */ |
334 |
- void sendReinvite(bool updateSDP = true, const string& headers = ""); |
|
334 |
+ virtual void sendReinvite(bool updateSDP = true, const string& headers = ""); |
|
335 | 335 |
/** send an INVITE */ |
336 |
- int sendInvite(const string& headers = ""); |
|
336 |
+ virtual int sendInvite(const string& headers = ""); |
|
337 | 337 |
|
338 | 338 |
/** set the session on/off hold */ |
339 |
- void setOnHold(bool hold); |
|
339 |
+ virtual void setOnHold(bool hold); |
|
340 | 340 |
|
341 | 341 |
/** |
342 | 342 |
* Destroy the session. |
... | ... |
@@ -344,7 +344,7 @@ public: |
344 | 344 |
* and added to the dead session list. |
345 | 345 |
* @see AmSessionContainer |
346 | 346 |
*/ |
347 |
- void destroy(); |
|
347 |
+ virtual void destroy(); |
|
348 | 348 |
|
349 | 349 |
/** |
350 | 350 |
* Signals the session it should stop. |