radioapp/radioapplication/win32_stubs/win32_stubs.cpp
branchRCL_3
changeset 20 93c594350b9a
parent 19 cce62ebc198e
--- a/radioapp/radioapplication/win32_stubs/win32_stubs.cpp	Tue Aug 31 15:15:02 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,151 +0,0 @@
-/*
-* 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:
-*
-*/
-
-#include "qsysteminfo.h"
-#include "xqserviceprovider.h"
-#include "xqsettingskey.h"
-#include "xqsettingsmanager.h"
-#include "radio_global.h"
-
-/*!
- *
- */
-QtMobility::QSystemDeviceInfo::QSystemDeviceInfo( QObject* parent ) :
-    QObject( parent )
-{
-}
-
-/*!
- *
- */
-QtMobility::QSystemDeviceInfo::~QSystemDeviceInfo()
-{
-}
-
-/*!
- *
- */
-XQServiceProvider::XQServiceProvider( const QString&, QObject* parent ) :
-    QObject( parent )
-{
-}
-
-/*!
- *
- */
-XQServiceProvider::~XQServiceProvider()
-{
-}
-
-
-/*!
- *
- */
-XQSettingsKey::XQSettingsKey( XQSettingsKey::Target, long int uid, unsigned long int key ) :
-    mUid( uid ),
-    mKey( key )
-{
-}
-
-/*!
- *
- */
-XQSettingsKey::~XQSettingsKey()
-{
-}
-
-/*!
- *
- */
-XQSettingsKey::Target XQSettingsKey::target() const
-{
-    return TargetCentralRepository;
-}
-
-/*!
- *
- */
-long int XQSettingsKey::uid() const
-{
-    return mUid;
-}
-
-/*!
- *
- */
-unsigned long int XQSettingsKey::key() const
-{
-    return mKey;
-}
-
-/*!
- *
- */
-XQSettingsManager::XQSettingsManager( QObject* parent ) :
-    QObject( parent )
-{
-}
-
-/*!
- *
- */
-XQSettingsManager::~XQSettingsManager()
-{
-}
-
-/*!
- *
- */
-QVariant XQSettingsManager::readItemValue( const XQSettingsKey& key, XQSettingsManager::Type )
-{
-    if ( key.uid() == CENREP_CORE_APPLICATION_UIS && key.key() == ID_NETWORK_CONNECTION_ALLOWED ) {
-        return NetworkAllowed;
-    }
-    return QVariant();
-}
-
-/*!
- *
- */
-bool XQSettingsManager::writeItemValue( const XQSettingsKey&, const QVariant& )
-{
-    return true;
-}
-
-/*!
- *
- */
-bool XQSettingsManager::startMonitoring( const XQSettingsKey&, XQSettingsManager::Type )
-{
-    return true;
-}
-
-/*!
- *
- */
-bool XQSettingsManager::stopMonitoring( const XQSettingsKey& )
-{
-    return true;
-}
-
-/*!
- *
- */
-XQSettingsManager::Error XQSettingsManager::error() const
-{
-    return NoError;
-}