voicerecorder/NewServiceSrc/cnewfileserviceserverobserver.h
branchRCL_3
changeset 20 072a5fa0c63b
parent 19 2f5c9ee7098c
child 21 c6bafb5162d8
--- a/voicerecorder/NewServiceSrc/cnewfileserviceserverobserver.h	Thu Aug 19 09:57:40 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,70 +0,0 @@
-/*
-* Copyright (c) 2006-2006 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:  CActive-derived class for synchronizing server commands
-*
-*/
-
-#ifndef CNEWFILESERVICESERVEROBSERVER_H
-#define CNEWFILESERVICESERVEROBSERVER_H
-
-//  INCLUDES
-#include <e32base.h>
-
-// FORWARD DECLARATIONS
-class MNewFileServiceServerObserver;
-
-/**
- *  CActive-derived class for synchronizing server commands
- *
- *  @lib newservice.lib
- *  @since S60 v3.0
- */
-NONSHARABLE_CLASS( CNewFileServiceServerObserver )
-    : public CActive
-    {
-public:
-    static CNewFileServiceServerObserver* NewL();
-
-    ~CNewFileServiceServerObserver();
-
-    /**
-     * Wait until RunL is called from server
-     *
-     * @since S60 3.1
-     * @param aObserver The object that is notified when request completes
-     * @return Reference to this objects TRequestStatus so that it can be
-     *         supplied to server
-     */
-    TRequestStatus& IssueWait( MNewFileServiceServerObserver* aObserver );
-
-private: // from base class CActive
-    /**
-     * From CActive
-     */
-    void RunL();
-    void DoCancel();
-
-protected:
-
-
-private:
-    CNewFileServiceServerObserver();
-
-    void ConstructL();
-
-private: // data
-    MNewFileServiceServerObserver* iObserver;
-    };
-
-#endif // CNEWFILESERVICESERVEROBSERVER_H