javauis/nokiasound/inc/MMIDEventSender.h
branchRCL_3
changeset 24 6c158198356e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/javauis/nokiasound/inc/MMIDEventSender.h	Thu Aug 19 09:48:13 2010 +0300
@@ -0,0 +1,63 @@
+/*
+* Copyright (c) 2005 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:  SoundImpl instances can send events through this interface
+*
+*/
+
+
+
+#ifndef MMIDEVENTSENDER_H
+#define MMIDEVENTSENDER_H
+
+/**
+*  SoundImpl instances cand send events through this interface.
+*  This interface has only one method, SendEvent(), which can be used
+*  for sending all types of sound events.
+*
+*  @since 3.0
+*/
+NONSHARABLE_CLASS(MMIDEventSender)
+{
+
+public: // New functions
+
+    /**
+    * Sends event to Java SoundListener.
+    * @since 3.0
+    * @param aEventType Type of the event to send
+    */
+    virtual void SendEvent(TInt aEventType) = 0;
+
+protected:
+
+    /**
+    * C++ default constructor.
+    */
+    MMIDEventSender() { }
+
+private:
+
+    // Prohibit copy constructor if not deriving from CBase.
+    MMIDEventSender(const MMIDEventSender&) { }
+    // Prohibit assigment operator if not deriving from CBase.
+    MMIDEventSender& operator=(const MMIDEventSender&)
+    {
+        return *this;
+    }
+
+};
+
+#endif // MMIDEVENTSENDER_H
+
+// End of File