summaryrefslogtreecommitdiffstats
path: root/plugins/contacts/symbian/contactsmodel/tsrc/packagerclientserver/client/inc/t_packagertestclient.h
diff options
context:
space:
mode:
authorDavid Laing <david.laing@nokia.com>2010-07-04 14:47:22 +1000
committerDavid Laing <david.laing@nokia.com>2010-07-04 14:47:22 +1000
commite38ebf00c0b539a7756b21946693e201269b976a (patch)
tree8f90c28f7e57095b9bd8749d17a6a36e9a297dcd /plugins/contacts/symbian/contactsmodel/tsrc/packagerclientserver/client/inc/t_packagertestclient.h
parent448d4a4301b7abeb9065aca13b62c70422239b94 (diff)
Revert "Merge branch 'master' of ../../mainline/qtmobility"
This reverts commit 448d4a4301b7abeb9065aca13b62c70422239b94, reversing changes made to 815d646dc485b6d15fbddc2814201a5b50be4a85.
Diffstat (limited to 'plugins/contacts/symbian/contactsmodel/tsrc/packagerclientserver/client/inc/t_packagertestclient.h')
-rw-r--r--plugins/contacts/symbian/contactsmodel/tsrc/packagerclientserver/client/inc/t_packagertestclient.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/plugins/contacts/symbian/contactsmodel/tsrc/packagerclientserver/client/inc/t_packagertestclient.h b/plugins/contacts/symbian/contactsmodel/tsrc/packagerclientserver/client/inc/t_packagertestclient.h
deleted file mode 100644
index c58b9b24c0..0000000000
--- a/plugins/contacts/symbian/contactsmodel/tsrc/packagerclientserver/client/inc/t_packagertestclient.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
-* Copyright (c) 2005-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:
-*
-*/
-
-
-
-#ifndef __PACKAGER_TEST_CLIENT_H__
-#define __PACKAGER_TEST_CLIENT_H__
-
-#include <e32std.h>
-#include "ccntpackager.h"
-
-
-class RPackagerTestClient : public RSessionBase
- {
-public:
- IMPORT_C void ConnectL();
- IMPORT_C void Close();
-
- IMPORT_C void PackAndSendL(const CContactItem& anItem, TRequestStatus& aStatus);
- IMPORT_C void PackAndSendL(const CContentType& anItem, TRequestStatus& aStatus);
- IMPORT_C void PackAndSendL(const CContactTextDef& anItem, TRequestStatus& aStatus);
- IMPORT_C void PackAndSendL(const CContactItemViewDef& anItem, TRequestStatus& aStatus);
- IMPORT_C void PackAndSendL(const CContactViewDef& anItem, TRequestStatus& aStatus);
- IMPORT_C void PackAndSendL(const CContactIdArray& anItem, TRequestStatus& aStatus);
- IMPORT_C void PackAndSendL(const CCntFilter& anItem, TRequestStatus& aStatus);
- IMPORT_C void PackAndSendL(const CViewContact& anItem, TRequestStatus& aStatus);
- IMPORT_C void PackAndSendL(const CDesCArray& anItem, TRequestStatus& aStatus);
-
- IMPORT_C CContactItem* GetAndUnpackCntItemLC() const;
- IMPORT_C CContentType* GetAndUnpackCntContentTypeLC() const;
- IMPORT_C CContactTextDef* GetAndUnpackCntTextDefLC() const;
- IMPORT_C CContactItemViewDef* GetAndUnpackCntItemViewDefLC() const;
- IMPORT_C CContactViewDef* GetAndUnpackCntViewDefLC() const;
- IMPORT_C CContactIdArray* GetAndUnpackCntIdArrayLC() const;
- IMPORT_C CCntFilter* GetAndUnpackCntFilterLC() const;
- IMPORT_C CViewContact* GetAndUnpackViewCntLC() const;
- IMPORT_C CDesCArray* GetAndUnpackDesCArrayLC() const;
-
-private:
- void PrepareArgumentsL(TIpcArgs& anArgs) const;
- IMPORT_C CContactItem* DoUnpackCntItemLC (TInt aBufferSize, TIpcArgs& anArgs) const;
- IMPORT_C CContentType* DoUnpackCntContentTypeLC (TInt aBufferSize, TIpcArgs& anArgs) const;
- IMPORT_C CContactTextDef* DoUnpackCntTextDefLC (TInt aBufferSize, TIpcArgs& anArgs) const;
- IMPORT_C CContactItemViewDef* DoUnpackCntItemViewDefLC(TInt aBufferSize, TIpcArgs& anArgs) const;
- IMPORT_C CContactViewDef* DoUnpackCntViewDefLC (TInt aBufferSize, TIpcArgs& anArgs) const;
- IMPORT_C CContactIdArray* DoUnpackCntIdArrayLC (TInt aBufferSize, TIpcArgs& anArgs) const;
- IMPORT_C CCntFilter* DoUnpackCntFilterLC (TInt aBufferSize, TIpcArgs& anArgs) const;
- IMPORT_C CViewContact* DoUnpackViewCntLC (TInt aBufferSize, TIpcArgs& anArgs) const;
- IMPORT_C CDesCArray* DoUnpackDesCArrayLC (TInt aBufferSize, TIpcArgs& anArgs) const;
-
-private:
- CCntPackager* iPackager;
-
- };
-
-
-#endif //__PACKAGER_TEST_CLIENT_H__