diff -r 6ca72c0fe49a -r a941bc465d9f PECengine/ListLibrary2/ContactListSrc/CPEngContactListTransCreate.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PECengine/ListLibrary2/ContactListSrc/CPEngContactListTransCreate.h Wed Sep 01 12:31:13 2010 +0100 @@ -0,0 +1,110 @@ +/* +* Copyright (c) 2005 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: Handler to create contact list +* +*/ + +#ifndef __CPENGCONTACTLISTTRANSCREATE_H__ +#define __CPENGCONTACTLISTTRANSCREATE_H__ + +// INCLUDES +#include "CPEngContactListTransBase.h" + + +// CLASS DECLARATION +class MPEngXMLSerializer; + + +/** + * Handler to create contact list + * + * @lib PEngListLib2 + * @since 3.0 + */ +NONSHARABLE_CLASS( CPEngContactListTransCreate ): + public CPEngContactListTransBase + { +public: + + /** + * Two-phased constructor. + */ + static CPEngContactListTransCreate* NewLC( + CPEngContactListModBase& aContactList, + CPEngSessionSlotId& aSessionSlotId, + MPEngContactListTransactionManager& aManager, + TPEngWVCspVersion& aCSPVersion, + TInt aOperationId ); + + /** + * Destructor. + */ + virtual ~CPEngContactListTransCreate(); + + +protected: //From CPEngContactListTransBase + + /** + * Create XML message to create contact list + * @see + */ + void DoGetXMLCreateCntListL( MPEngXMLSerializer& aXmlSerializer ); + + + /** + * Parse contact list create XML response + * @see + */ + void DoParseCreateCntListResponseL( const TDesC8& aResponse, + MPEngXMLParser& aXMLparser ); + + /** + * Create XML message to fetch contact list + * @see + */ + void DoGetXMLFetchCntListL( MPEngXMLSerializer& aXmlSerializer ); + + + /** + * Parse contact list fetch XML response + * @see + */ + void DoParseFetchCntListResponseL( const TDesC8& aResponse, + MPEngXMLParser& aXMLparser ); + + + +protected: // Constructors + + /** + * C++ constructor. + * contact list model reference owned + */ + CPEngContactListTransCreate( CPEngContactListModBase& aContactList, + CPEngSessionSlotId& aSessionSlotId, + MPEngContactListTransactionManager& aManager, + TPEngWVCspVersion& aCSPVersion, + TInt aOperationId ); + + + /** + * Symbian constructor + */ + void ConstructL(); + }; + +#endif // __CPENGCONTACTLISTTRANSCREATE_H__ + +// End of File +