conference: first implementation

This commit adds conferences management

- create conference by joining two ongoing calls/conferences
- create conference by calling a new peer and joining him to the ongoing
call/conference
- hanging up conferences

This commit relies on CallModel and RecenModel selection models
interactions to update call view and Smartlist row selected.

Change-Id: Ib9f6b9b870e66c8ccfb5115ad6fdb592c625eb58
Tuleap: #114
diff --git a/src/PersonsVC.mm b/src/PersonsVC.mm
index 170a3c1..aebe00b 100644
--- a/src/PersonsVC.mm
+++ b/src/PersonsVC.mm
@@ -122,6 +122,7 @@
             Call* c = CallModel::instance().dialingCall();
             c->setPeerContactMethod(m);
             c << Call::Action::ACCEPT;
+            CallModel::instance().selectCall(c);
         }
     }
 }