videofeeds/utils/inc/MIptvRtpTo3gpObserver.h
changeset 0 96612d01cf9f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videofeeds/utils/inc/MIptvRtpTo3gpObserver.h	Mon Jan 18 20:21:12 2010 +0200
@@ -0,0 +1,44 @@
+/*
+* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "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 for .rtp to .3gp file converter*
+*/
+
+
+
+
+#ifndef MIPTVRTPTO3GPOBSERVER_H
+#define MIPTVRTPTO3GPOBSERVER_H
+
+#include <e32base.h>
+
+class CIptvRtpTo3gpConverter;
+
+/**
+*  Observer for .rtp to .3gp file converter
+*
+*  @lib    IptvUtil
+*  @since  S60 v3.1
+*/
+class MIptvRtpTo3gpObserver
+    {
+public:
+    /**
+    *  Notification for .rtp to .3gp conversion completed
+    *  @param aConverter reference to converter reporting conversion ready
+    *  @param aError KErrNone on conversion success, system error code otherwise
+    */
+    virtual void RtpTo3gpConversionReady( CIptvRtpTo3gpConverter& aConverter, TInt aError ) = 0;
+    };
+
+#endif // MIPTVRTPTO3GPOBSERVER_H