summaryrefslogtreecommitdiffstats
path: root/plugins/contacts/symbian/contactsmodel/tsrc/integration/tcntpolice/incsql/ecntfindasyncinit1_cstep.h
diff options
context:
space:
mode:
authorDavid Laing <david.laing@nokia.com>2010-07-05 13:20:17 +1000
committerDavid Laing <david.laing@nokia.com>2010-07-05 13:20:17 +1000
commit0d38ab954335556df39456af585a566ed8e022c8 (patch)
tree9e82694b5553218d86d88e2f9d4b3604b20f7daa /plugins/contacts/symbian/contactsmodel/tsrc/integration/tcntpolice/incsql/ecntfindasyncinit1_cstep.h
parent719c7ad0e9a9a64f48f137098356c8712580754f (diff)
Revert "Revert "Merge branch 'master' of ../../mainline/qtmobility""
This reverts commit e38ebf00c0b539a7756b21946693e201269b976a. Conflicts: examples/telephony/dialer/dialer.pro src/s60installs/bwins/QtMultimediaKitu.def src/s60installs/bwins/QtServiceFrameworku.def src/s60installs/bwins/QtSystemInfou.def src/s60installs/eabi/QtSystemInfou.def
Diffstat (limited to 'plugins/contacts/symbian/contactsmodel/tsrc/integration/tcntpolice/incsql/ecntfindasyncinit1_cstep.h')
-rw-r--r--plugins/contacts/symbian/contactsmodel/tsrc/integration/tcntpolice/incsql/ecntfindasyncinit1_cstep.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/plugins/contacts/symbian/contactsmodel/tsrc/integration/tcntpolice/incsql/ecntfindasyncinit1_cstep.h b/plugins/contacts/symbian/contactsmodel/tsrc/integration/tcntpolice/incsql/ecntfindasyncinit1_cstep.h
new file mode 100644
index 0000000000..1385f08f4a
--- /dev/null
+++ b/plugins/contacts/symbian/contactsmodel/tsrc/integration/tcntpolice/incsql/ecntfindasyncinit1_cstep.h
@@ -0,0 +1,59 @@
+/*
+* Copyright (c) 2008-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 ECntFindAsyncInit1_H_
+#define ECntFindAsyncInit1_H_
+
+//Include the suite header
+#include "csuite.h"
+
+#include "ccntserver.h"
+#include "ccntipccodes.h"
+
+
+class CECntFindAsyncInit1Step: public CCapabilityTestStep
+ {
+
+public:
+
+ //Get the version of the server to be called
+ TVersion Version()
+ {
+ return TVersion(KLockSrvMajorVersionNumber, KLockSrvMinorVersionNumber, KLockSrvBuildVersionNumber);
+ }
+
+
+ //Constructor called from the respective Suite.cpp from their "AddTestStep" function
+ CECntFindAsyncInit1Step() ;
+
+ //Always clean your mess
+ ~CECntFindAsyncInit1Step()
+ {
+ tChildThread.Close();
+ }
+
+ //This is the Function called from "doTestStepL" by the test Suite,and it creates an
+ //child thread which internally calls the corresponding Exec_SendReceive_SERVERNAME fn.
+ TVerdict MainThread();
+
+ //Here's where the connection and testing the message takes place
+ TInt Exec_SendReceive();
+
+ };
+
+#endif