mmmw_plat/telephony_multimedia_service_api/inc/tmsmicsource.h
changeset 0 71ca22bcf22a
child 12 2eb3b066cc7d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mmmw_plat/telephony_multimedia_service_api/inc/tmsmicsource.h	Tue Feb 02 01:08:46 2010 +0200
@@ -0,0 +1,74 @@
+/*
+ * Copyright (c) 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: Telephony Multimedia Service
+ *
+ */
+
+#ifndef TMS_MIC_SOURCE_H
+#define TMS_MIC_SOURCE_H
+
+#include <tms.h>
+#include <tmssource.h>
+
+namespace TMS {
+
+// FORWARD DECLARATIONS
+class TMSMicSourceBody;
+
+/**
+ * TMSMicSource class
+ *
+ * This class instantiates TMS mic source object.
+ *
+ * @lib tmsapi.lib
+ *
+ */
+class TMSMicSource : public TMSSource
+    {
+public:
+    /**
+     * Destructor
+     */
+    IMPORT_C virtual ~TMSMicSource();
+
+    /**
+     * Return source type.
+     *
+     * This function can be called at any time.
+     *
+     * @param  sourcetype
+     *      The type of sink object (TMS_SOURCE_MIC).
+     *
+     * @return
+     *      TMS_RESULT_SUCCESS if the operation was successful.
+     *
+     */
+    IMPORT_C virtual gint GetType(TMSSourceType& sourcetype);
+
+protected:
+    /**
+     * Constructor
+     */
+    IMPORT_C TMSMicSource();
+
+protected:
+    TMSMicSourceBody *iBody;
+    };
+
+} //namespace TMS
+
+#endif //TMS_MIC_SOURCE_H
+
+// End of file
+