summaryrefslogtreecommitdiffstats
path: root/src/daemon/jsondbresponse.h
diff options
context:
space:
mode:
authorKevin Simons <kevin.simons@nokia.com>2012-03-29 13:47:24 +0200
committerQt by Nokia <qt-info@nokia.com>2012-03-30 09:41:59 +0200
commite52a80fc77b2f5afc6e100a089dbcabcdcbb1b15 (patch)
tree2c6d644da2d65906bee10bec9ae443549e287784 /src/daemon/jsondbresponse.h
parent9e0ed12e99d68ad063eb544cd904492437139217 (diff)
Remove unused JsonDbResponse class
Change-Id: I4ffe000ac8378cef392743d581c84f66e06ec98b Reviewed-by: Denis Dzyubenko <denis.dzyubenko@nokia.com>
Diffstat (limited to 'src/daemon/jsondbresponse.h')
-rw-r--r--src/daemon/jsondbresponse.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/src/daemon/jsondbresponse.h b/src/daemon/jsondbresponse.h
deleted file mode 100644
index e6944107..00000000
--- a/src/daemon/jsondbresponse.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the QtAddOn.JsonDb module of the Qt Toolkit.
-**
-** $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$
-**
-****************************************************************************/
-
-#ifndef JSONDB_RESPONSE_H
-#define JSONDB_RESPONSE_H
-
-#include <QString>
-#include <qjsonobject.h>
-
-#include "jsondb-global.h"
-
-QT_BEGIN_HEADER
-
-QT_BEGIN_NAMESPACE_JSONDB
-
-struct JsonDbResponse {
- static void setError(QJsonObject &map, int code, const QString &message);
- static QJsonObject makeError(int code, const QString &message);
- static QJsonObject makeResponse(QJsonObject &resultmap, QJsonObject &errormap, bool silent = false);
- static QJsonObject makeResponse(QJsonObject &resultmap);
- static QJsonObject makeErrorResponse(QJsonObject &resultmap, int code, const QString &message, bool silent = false);
- static QJsonObject makeErrorResponse(int code, const QString &message, bool silent = false);
- static bool responseIsError(QJsonObject responseMap);
-};
-
-QT_END_NAMESPACE_JSONDB
-
-QT_END_HEADER
-
-#endif // JSONDB_RESPONSE_H