summaryrefslogtreecommitdiffstats
path: root/src/serviceframework/ipc/qremoteserviceregister_p.cpp
diff options
context:
space:
mode:
authorAlex <qt-info@nokia.com>2011-06-15 19:14:16 +1000
committerAlex <qt-info@nokia.com>2011-06-17 17:31:52 +1000
commit0e3be465c935700019f6232f88381613d51776d7 (patch)
treee2a44eda69ebd38183ea251532e0da9fcb6020a6 /src/serviceframework/ipc/qremoteserviceregister_p.cpp
parent79ec22e9cd8ef8f679c541c4fd76d616e737b8bf (diff)
Add first version of QtServiceFramework library
Diffstat (limited to 'src/serviceframework/ipc/qremoteserviceregister_p.cpp')
-rw-r--r--src/serviceframework/ipc/qremoteserviceregister_p.cpp100
1 files changed, 100 insertions, 0 deletions
diff --git a/src/serviceframework/ipc/qremoteserviceregister_p.cpp b/src/serviceframework/ipc/qremoteserviceregister_p.cpp
new file mode 100644
index 00000000..a4b5b196
--- /dev/null
+++ b/src/serviceframework/ipc/qremoteserviceregister_p.cpp
@@ -0,0 +1,100 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the Qt Mobility Components.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "qremoteserviceregister_p.h"
+#include "instancemanager_p.h"
+
+#include <QCoreApplication>
+
+QTM_BEGIN_NAMESPACE
+
+QRemoteServiceRegisterPrivate::QRemoteServiceRegisterPrivate(QObject* parent)
+ : QObject(parent), iFilter(0)
+{
+ setQuitOnLastInstanceClosed(true);
+}
+
+QRemoteServiceRegisterPrivate::~QRemoteServiceRegisterPrivate()
+{
+}
+
+//void QRemoteServiceRegisterPrivate::publishServices( const QString& ident)
+//{
+// qWarning("QRemoteServiceregisterPrivate::publishServices has not been reimplemented");
+//}
+//
+//void QRemoteServiceRegisterPrivate::processIncoming()
+//{
+// qWarning("QRemoteServiceRegisterPrivate::processIncoming has not been reimplemented");
+//}
+
+bool QRemoteServiceRegisterPrivate::quitOnLastInstanceClosed() const
+{
+ return m_quit;
+}
+
+void QRemoteServiceRegisterPrivate::setQuitOnLastInstanceClosed(bool quit)
+{
+ m_quit = quit;
+ if (m_quit) {
+ connect(InstanceManager::instance(), SIGNAL(allInstancesClosed()), QCoreApplication::instance(), SLOT(quit()));
+ }
+ else {
+ disconnect(InstanceManager::instance(), SIGNAL(allInstancesClosed()), QCoreApplication::instance(), SLOT(quit()));
+ }
+}
+
+QRemoteServiceRegister::SecurityFilter QRemoteServiceRegisterPrivate::setSecurityFilter(QRemoteServiceRegister::SecurityFilter filter)
+{
+ QRemoteServiceRegister::SecurityFilter f;
+ f = filter;
+ iFilter = filter;
+ return f;
+}
+
+QRemoteServiceRegister::SecurityFilter QRemoteServiceRegisterPrivate::getSecurityFilter()
+{
+ return iFilter;
+}
+
+
+#include "moc_qremoteserviceregister_p.cpp"
+QTM_END_NAMESPACE