--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ncdengine/inc/ncdserverreportoperationobserver.h Thu Dec 17 08:51:10 2009 +0200
@@ -0,0 +1,80 @@
+/*
+* Copyright (c) 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: Observer interface definition for download operations
+*
+*/
+
+
+#ifndef M_NCD_SERVER_REPORT_OPERATION_OBSERVER_H
+#define M_NCD_SERVER_REPORT_OPERATION_OBSERVER_H
+
+#include <e32cmn.h>
+
+class TNcdProgress;
+class MNcdServerReportOperation;
+class MNcdQuery;
+
+/**
+ * Observer interface for server report operations.
+ *
+ *
+ */
+class MNcdServerReportOperationObserver
+ {
+
+public:
+
+ /**
+ * Called when the operation has progressed.
+ *
+ *
+ * @param aOperation The operation that sent the event.
+ * @param aProgress Progress of the operation.
+ */
+ virtual void ReportProgress( MNcdServerReportOperation& aOperation,
+ TNcdProgress aProgress ) = 0;
+
+ /**
+ * Called when a query has been received for an operation.
+ *
+ * @note Querys need to be completed with MNcdOperation::CompleteQueryL()
+ * to continue the operation! Alternatively, the operation must be
+ * cancelled.
+ *
+ *
+ * @see MNcdOperation
+ * @see MNcdQuery
+ * @param aOperation The operation that sent the event.
+ * @param aQuery Pointer to the query object that needs to be
+ * completed. Counted, Release() must be called after use.
+ * @see MNcdOperation::CompleteQueryL()
+ */
+ virtual void QueryReceived( MNcdServerReportOperation& aOperation,
+ MNcdQuery* aQuery ) = 0;
+
+ /**
+ * Called when an operation has been completed.
+ *
+ *
+ * @param aOperation The operation that sent the event.
+ * @param aError Error code for operation completion.
+ * KErrNone for successful completion, otherwise a system
+ * wide error code.
+ */
+ virtual void OperationComplete( MNcdServerReportOperation& aOperation,
+ TInt aError ) = 0;
+
+ };
+
+#endif // M_NCD_SERVER_REPORT_OPERATION_OBSERVER_H