Small clean of subtitles applet code.
[mafwsubrenderer] / qmafw-gst-subtitles-renderer / unittests / ut_MafwGstRenderer / MafwMmcMonitorStub.cpp
1 /*
2  * This file is part of QMAFW
3  *
4  * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). All rights
5  * reserved.
6  *
7  * Contact: Visa Smolander <visa.smolander@nokia.com>
8  *
9  * This software, including documentation, is protected by copyright controlled
10  * by Nokia Corporation. All rights are reserved. Copying, including
11  * reproducing, storing, adapting or translating, any or all of this material
12  * requires the prior written consent of Nokia Corporation. This material also
13  * contains confidential information which may not be disclosed to others
14  * without the prior written consent of Nokia.
15  *
16  */
17
18 #include "MafwMmcMonitor.h"
19 #include <QDebug>
20
21 bool stubMmcMounted = true;
22 MafwMmcMonitor* stubMmcMonitor;
23
24 const QString MafwMmcMonitor::MMC_URI_PREFIX="file:///home/user/MyDocs";
25
26 MafwMmcMonitor::MafwMmcMonitor(QObject* parent) : QObject(parent), m_mounted(false)
27 {
28     stubMmcMonitor = this;
29 }
30
31 MafwMmcMonitor::~MafwMmcMonitor()
32 {
33     stubMmcMonitor = 0;
34 }
35
36 bool MafwMmcMonitor::isMounted()
37 {
38     return stubMmcMounted;
39 }
40
41 void MafwMmcMonitor::preUnmountEvent(const QString &/*state*/)
42 {
43     Q_EMIT stubMmcMonitor->preUnmount();
44 }
45