Make UI enhancements and refactor some code. We still have bugs on handling multiple calls and switching between them.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16431 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
João Mesquita
2010-01-21 05:05:56 +00:00
parent 1390132682
commit 0ecda2f00a
4 changed files with 88 additions and 37 deletions

View File

@@ -45,10 +45,9 @@ typedef enum {
FSCOMM_CALL_DIRECTION_OUTBOUND = 1
} fscomm_call_direction_t;
class Call
{
class Call {
public:
Call(void);
Call();
Call(int call_id, QString cid_name, QString cid_number, fscomm_call_direction_t direction, QString uuid);
QString getCidName(void) { return _cid_name; }
QString getCidNumber(void) { return _cid_number; }