diff -r 000000000000 -r 164170e6151a wim/WimClient/inc/WimCertTClassWrappers.inl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wim/WimClient/inc/WimCertTClassWrappers.inl Tue Jan 26 15:20:08 2010 +0200 @@ -0,0 +1,99 @@ +/* +* Copyright (c) 2002 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: These wrappers are used when we need to fetch/insert +* certificate data asyncronously. +* +*/ + + +// ----------------------------------------------------------------------------- +// Inline implementation of CWimCertPckgBuf class +// ----------------------------------------------------------------------------- + + +// ----------------------------------------------------------------------------- +// CWimCertPckg::CWimCertPckg() +// C++ constructor. +// ----------------------------------------------------------------------------- +template +inline CWimCertPckg::CWimCertPckg( const T& aRef ) : iPckg( aRef ) + { + } + +// ----------------------------------------------------------------------------- +// CWimCertPckg::~CWimCertPckg() +// Destructor. +// ----------------------------------------------------------------------------- +template +inline CWimCertPckg::~CWimCertPckg() + { + } + +// ----------------------------------------------------------------------------- +// CWimCertPckgBuf::Pckg() +// return TPckg* Pointer to TPckg typed member +// ----------------------------------------------------------------------------- +template +inline TPckg* CWimCertPckg::Pckg() + { + return &iPckg; + } + + +// ----------------------------------------------------------------------------- +// Inline implementation of CWimCertPckgBuf class +// ----------------------------------------------------------------------------- + +// ----------------------------------------------------------------------------- +// CWimCertPckgBuf::CWimCertPckgBuf() +// C++ default constructor. +// ----------------------------------------------------------------------------- +template +inline CWimCertPckgBuf::CWimCertPckgBuf() : iPckgBuf() + { + } + +// ----------------------------------------------------------------------------- +// CWimCertPckgBuf::CWimCertPckgBuf( const T& aRef ) +// C++ constructor. +// ----------------------------------------------------------------------------- +template +inline CWimCertPckgBuf::CWimCertPckgBuf( const T& aRef ) : iPckgBuf( aRef ) + { + } + + +// ----------------------------------------------------------------------------- +// CWimCertPckgBuf::~CWimCertPckgBuf() +// Destructor. +// ----------------------------------------------------------------------------- +template +inline CWimCertPckgBuf::~CWimCertPckgBuf() + { + } + +// ----------------------------------------------------------------------------- +// CWimCertPckgBuf::PckgBuf() +// ----------------------------------------------------------------------------- +template +inline TPckgBuf* CWimCertPckgBuf::PckgBuf() + { + return &iPckgBuf; + } + + + + +// End of File +