qtmobileextensions/src/settingsmanager/xqpublishandsubscribeutils.cpp
branchRCL_3
changeset 10 cd2778e5acfe
parent 9 5d007b20cfd0
child 11 19a54be74e5e
--- a/qtmobileextensions/src/settingsmanager/xqpublishandsubscribeutils.cpp	Tue Aug 31 16:02:37 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,83 +0,0 @@
-/*
-* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-*
-* This program is free software: you can redistribute it and/or modify
-* it under the terms of the GNU Lesser General Public License as published by
-* the Free Software Foundation, version 2.1 of the License.
-* 
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-* GNU Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public License
-* along with this program.  If not, 
-* see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/".
-*
-* Description:
-*
-*/
-
-#include "xqpublishandsubscribeutils.h"
-#include "xqpublishandsubscribeutils_p.h"
-
-/*!
-    \class XQPublishAndSubscribeUtils
-
-    \brief The XQPublishAndSubscribeUtils implements Publish and Subscribe related special
-    features in SettingsManager. This class is just a Qt-like wrapper to
-    Symbian OS' RPropery class.
-*/
-
-
-/*!
-    Constructs an XQPublishAndSubscribeUtils object.
-    \param settingsManager Reference to XQSettingsManager instance
-*/
-XQPublishAndSubscribeUtils::XQPublishAndSubscribeUtils(XQSettingsManager& settingsManager, QObject* parent)
-    : QObject(parent), d(new XQPublishAndSubscribeUtilsPrivate(settingsManager))
-{
-}
-
-/*!
-    Destructs an XQPublishAndSubscribeUtils object.
-*/
-XQPublishAndSubscribeUtils::~XQPublishAndSubscribeUtils()
-{
-}
-
-/*!
-    Defines a propery
-    \param key XQPublishAndSubscribeSettingsKey which defines the propery details
-    \param type Propery type (NOTE: TypeDouble is not supported by Publish and Subscribe.)
-    \return True if the property was succesfully defined, otherwise return false.
-*/
-bool XQPublishAndSubscribeUtils::defineProperty(const XQPublishAndSubscribeSettingsKey& key, XQSettingsManager::Type type)
-{
-    return d->defineProperty(key, type);
-}
-
-/*!
-    Defines a propery with security policies
-    \param key XQPublishAndSubscribeSettingsKey which defines the propery details
-    \param type Propery type (NOTE: TypeDouble is not supported by Publish and Subscribe.)
-    \param readPolicy Policy definition for read operations
-    \param writePolicy Policy definition for write operations
-    \return True if the property was succesfully defined, otherwise return false.
-*/
-bool XQPublishAndSubscribeUtils::defineProperty(const XQPublishAndSubscribeSettingsKey& key, XQSettingsManager::Type type,
-    const XQPublishAndSubscribeSecurityPolicy& readPolicy, const XQPublishAndSubscribeSecurityPolicy& writePolicy)
-{
-    return d->defineProperty(key, type, readPolicy, writePolicy);
-}
-
-/*!
-    Deletes a propery
-    \param key XQPublishAndSubscribeSettingsKey which defines the propery details
-    \return True if the property was succesfully defined, otherwise return false.
-*/
-bool XQPublishAndSubscribeUtils::deleteProperty(const XQPublishAndSubscribeSettingsKey& key)
-{
-    return d->deleteProperty(key);
-}