accessoryservices/accessoryserver/src/Policy/AccConGenericID.cpp
changeset 0 4e1aa6a622a0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/accessoryservices/accessoryserver/src/Policy/AccConGenericID.cpp	Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,115 @@
+/*
+* Copyright (c) 2002-2004 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:  Public, heap-allocated Generic ID
+*
+*/
+
+
+// INCLUDE FILES
+#include <AccConGenericID.h>
+#include "acc_debug.h"
+
+// EXTERNAL DATA STRUCTURES
+
+// EXTERNAL FUNCTION PROTOTYPES  
+
+// CONSTANTS
+const TInt KAccSrvCapabilityBufInitialSize = 50;
+
+// MACROS
+
+// LOCAL CONSTANTS AND MACROS
+
+// MODULE DATA STRUCTURES
+
+// LOCAL FUNCTION PROTOTYPES
+
+// FORWARD DECLARATIONS
+
+// ============================= LOCAL FUNCTIONS ===============================
+
+// ============================ MEMBER FUNCTIONS ===============================
+
+// -----------------------------------------------------------------------------
+// CAccConGenericID::CAccConGenericID
+// C++ default constructor can NOT contain any code, that
+// might leave.
+// -----------------------------------------------------------------------------
+//
+CAccConGenericID::CAccConGenericID()
+    {
+    API_TRACE_( "[AccFW:ACCPOLICY] CAccConGenericID::CAccConGenericID()" );
+    }
+
+// -----------------------------------------------------------------------------
+// CAccConGenericID::ConstructL
+// Symbian 2nd phase constructor can leave.
+// -----------------------------------------------------------------------------
+//
+void CAccConGenericID::ConstructL()
+    {
+    API_TRACE_( "[AccFW:ACCPOLICY] CAccConGenericID::ConstructL()" );
+    
+    iNameValueBuf = CBufFlat::NewL( KAccSrvCapabilityBufInitialSize );
+    
+    API_TRACE_( "[AccFW:ACCPOLICY] CAccConGenericID::ConstructL - return void" );
+    }
+
+// -----------------------------------------------------------------------------
+// CAccConGenericID::NewL
+// Two-phased constructor.
+// -----------------------------------------------------------------------------
+//
+EXPORT_C CAccConGenericID* CAccConGenericID::NewL()
+    {
+    API_TRACE_( "[AccFW:ACCPOLICY] CAccConGenericID::NewL()" );
+    
+    CAccConGenericID* self = new( ELeave ) CAccConGenericID();
+    
+    CleanupStack::PushL( self );
+    self->ConstructL();
+    CleanupStack::Pop( self );
+
+    API_TRACE_( "[AccFW:ACCPOLICY] CAccConGenericID::NewL - return self" );
+
+    return self;
+    }
+
+    
+// Destructor
+EXPORT_C CAccConGenericID::~CAccConGenericID()
+    {
+    API_TRACE_( "[AccFW:ACCPOLICY] CAccConGenericID::~CAccConGenericID()" );
+    
+    if( iNameValueBuf )
+        {
+        delete iNameValueBuf;
+        }
+        
+    API_TRACE_( "[AccFW:ACCPOLICY] CAccConGenericID::~CAccConGenericID - return" );
+    }
+
+// -----------------------------------------------------------------------------
+// CAccConGenericID::GenericID()
+// -----------------------------------------------------------------------------
+//
+EXPORT_C TAccPolGenericID CAccConGenericID::GenericID() const
+    {    
+    API_TRACE_( "[AccFW:ACCPOLICY] CAccConGenericID::GenericID()" );
+    return iGenericID;    
+    }
+
+// ========================== OTHER EXPORTED FUNCTIONS =========================
+
+//  End of File