From 532b3ac3f3dcec922b1c50d504b178c3510a0d47 Mon Sep 17 00:00:00 2001
From: Tristan Matthews <tristan.matthews@savoirfairelinux.com>
Date: Thu, 16 Jun 2011 16:10:01 -0400
Subject: [PATCH] * 6181: remove unused API from sipcall

Just getters and setters that aren't used anywhere
---
 sflphone-common/src/sip/sipcall.h | 59 +++----------------------------
 1 file changed, 5 insertions(+), 54 deletions(-)

diff --git a/sflphone-common/src/sip/sipcall.h b/sflphone-common/src/sip/sipcall.h
index 63141c6ed6..649ec95703 100644
--- a/sflphone-common/src/sip/sipcall.h
+++ b/sflphone-common/src/sip/sipcall.h
@@ -65,53 +65,11 @@ class SIPCall : public Call
          * Destructor
          */
         ~SIPCall ();
-
-        /**
-         * Call Identifier
-         * @return int  SIP call id
-         */
-        int  getCid () const {
-            return _cid;
-        }
-
-        /**
-         * Call Identifier
-         * @param cid SIP call id
-         */
-        void setCid (int cid) {
-            _cid = cid;
-        }
-
-        /**
-         * Domain identifier
-         * @return int  SIP domain id
-         */
-        int  getDid() const {
-            return _did;
-        }
-
-        /**
-         * Domain identifier
-         * @param did SIP domain id
-         */
-        void setDid (int did) {
-            _did = did;
-        }
-
         /**
-         * Transaction identifier
-         * @return int  SIP transaction id
-         */
-        int  getTid () const {
-            return _tid;
-        }
-
-        /**
-         * Transaction identifier
-         * @param tid SIP transaction id
+         * Get event subscription internal structure
          */
-        void setTid (int tid) {
-            _tid = tid;
+        pjsip_evsub *getXferSub() {
+            return _xferSub;
         }
 
         /**
@@ -121,13 +79,6 @@ class SIPCall : public Call
             _xferSub = sub;
         }
 
-        /**
-         * Get event subscription internal structure
-         */
-        pjsip_evsub *getXferSub() {
-            return _xferSub;
-        }
-
         void setInvSession (pjsip_inv_session* inv) {
             _invSession = inv;
         }
@@ -137,7 +88,7 @@ class SIPCall : public Call
         }
 
         void replaceInvSession (pjsip_inv_session *inv) {
-        	_invSession = inv;
+            _invSession = inv;
         }
 
         /**
@@ -165,7 +116,7 @@ class SIPCall : public Call
          * Return the local memory pool for this call
          */
         pj_pool_t *getMemoryPool(void) {
-        	return _pool;
+            return _pool;
         }
 
     private:
-- 
GitLab