mmserv/tms/tmscallserver/src/calladpt.cpp
branchRCL_3
changeset 17 3570217d8c21
parent 13 f5c5c82a163e
child 18 2eb3b066cc7d
--- a/mmserv/tms/tmscallserver/src/calladpt.cpp	Tue Apr 27 17:11:02 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,106 +0,0 @@
-/*
- * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
- * All rights reserved.
- * This component and the accompanying materials are made available
- * under the terms of "Eclipse Public License v1.0"
- * which accompanies this distribution, and is available
- * at the URL "http://www.eclipse.org/legal/epl-v10.html".
- *
- * Initial Contributors:
- * Nokia Corporation - initial contribution.
- *
- * Contributors:
- *
- * Description: Telephony Multimedia Service
- *
- */
-
-#include <tms.h>
-#include "callipadpt.h"
-#include "callcsadpt.h"
-#include "calladpt.h"
-#include "tmsutility.h"
-
-using namespace TMS;
-
-// -----------------------------------------------------------------------------
-// TMSCallAdpt::TMSCallAdpt
-//
-// -----------------------------------------------------------------------------
-//
-TMSCallAdpt::TMSCallAdpt()
-    {
-    TRACE_PRN_FN_ENT;
-    TRACE_PRN_FN_EXT;
-    }
-
-// -----------------------------------------------------------------------------
-// TMSCallAdpt::~TMSCallAdpt
-//
-// -----------------------------------------------------------------------------
-//
-TMSCallAdpt::~TMSCallAdpt()
-    {
-    TRACE_PRN_FN_ENT;
-    TRACE_PRN_FN_EXT;
-    }
-
-// -----------------------------------------------------------------------------
-// TMSCallAdpt::CreateCallL
-//
-// -----------------------------------------------------------------------------
-//
-gint TMSCallAdpt::CreateCallL(gint callType, TMSCallAdpt*& callAdpt)
-    {
-    TRACE_PRN_FN_ENT;
-    TMSCallAdpt* self(NULL);
-    gint retVal(TMS_RESULT_SUCCESS);
-    switch (callType)
-        {
-        case TMS_CALL_IP:
-            retVal = TMS_RESULT_INSUFFICIENT_MEMORY;
-            self = TMSCallIPAdpt::NewL();
-            if (self)
-                {
-                retVal = self->PostConstruct();
-                if (retVal != TMS_RESULT_SUCCESS)
-                    {
-                    delete self;
-                    self = NULL;
-                    }
-                }
-            break;
-
-        case TMS_CALL_CS:
-            retVal = TMS_RESULT_INSUFFICIENT_MEMORY;
-            self = new TMSCallCSAdpt();
-            if (self)
-                {
-                retVal = self->PostConstruct();
-                if (retVal != TMS_RESULT_SUCCESS)
-                    {
-                    delete self;
-                    self = NULL;
-                    }
-                }
-            break;
-        default:
-            retVal = TMS_RESULT_CALL_TYPE_NOT_SUPPORTED;
-            break;
-        }
-    callAdpt = self;
-    TRACE_PRN_FN_EXT;
-    return retVal;
-    }
-
-// -----------------------------------------------------------------------------
-// TMSCallAdpt::PostConstruct
-//
-// -----------------------------------------------------------------------------
-//
-gint TMSCallAdpt::PostConstruct()
-    {
-    return TMS_RESULT_SUCCESS;
-    }
-
-// End of file