radiohswidget/stub/xqsettingskey.cpp
branchRCL_3
changeset 20 93c594350b9a
parent 19 cce62ebc198e
--- a/radiohswidget/stub/xqsettingskey.cpp	Tue Aug 31 15:15:02 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,60 +0,0 @@
-/*
-* Copyright (c) 2010 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:  XQSettingsKey stub for FM Radio home screen widget
-*               unit testing.
-*
-*/
-
-// User includes
-#include "xqsettingskey.h"
-#include "radiologger.h"
-
-/*!
-    \class XQSettingsKey
-    \brief Stub implementation of XQSettingsKey for unit testing
-*/
-
-// ======== MEMBER FUNCTIONS ========
-
-XQSettingsKey::XQSettingsKey(XQSettingsKey::Target target, long int uid,
-    unsigned long int key)
-{
-    LOG_METHOD_ENTER;
-    m_target = target;
-    m_uid = uid;
-    m_key = key;
-}
-
-XQSettingsKey::~XQSettingsKey()
-{
-    LOG_METHOD_ENTER;
-}
-
-XQSettingsKey::Target XQSettingsKey::target() const
-{
-    LOG_METHOD_ENTER;
-    return m_target;
-}
-
-long int XQSettingsKey::uid() const
-{
-    LOG_METHOD_ENTER;
-    return m_uid;
-}
-
-unsigned long int XQSettingsKey::key() const
-{
-    LOG_METHOD_ENTER;
-    return m_key;
-}