aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/etcprovider/plugin.h
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2012-02-14 09:41:26 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-15 06:27:46 +0100
commit732a86a11dbc20079e33c289af72762ce0125ced (patch)
tree2269c4dc9cf0e53d1ad2928d69b32696b23b50ab /src/imports/etcprovider/plugin.h
parent16da679efc71293e097de7219fd855885c58dcb7 (diff)
Remove etcprovider plugin.
Handling image providers via QDeclarativeExtensionPlugin is not a pattern we want to promote for library code. The plugin was also missing documentation and autotests. It might be appropriate to be re-added later as an example showing the use of an image provider with a texture factory. Change-Id: I2d8f3208aebd55180bd627b3f9acc0679eb6328c Reviewed-by: Martin Jones <martin.jones@nokia.com>
Diffstat (limited to 'src/imports/etcprovider/plugin.h')
-rw-r--r--src/imports/etcprovider/plugin.h67
1 files changed, 0 insertions, 67 deletions
diff --git a/src/imports/etcprovider/plugin.h b/src/imports/etcprovider/plugin.h
deleted file mode 100644
index c7b388d6b2..0000000000
--- a/src/imports/etcprovider/plugin.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the demonstration applications 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 ETCPROVIDERPLUGIN_H
-#define ETCPROVIDERPLUGIN_H
-
-#include <QtDeclarative/qdeclarative.h>
-#include <QtDeclarative/QDeclarativeExtensionPlugin>
-
-QT_BEGIN_HEADER
-
-QT_BEGIN_NAMESPACE
-
-
-class EtcProviderPlugin : public QDeclarativeExtensionPlugin
-{
- Q_OBJECT
-
-public:
- void registerTypes(const char *uri);
- void initializeEngine(QDeclarativeEngine *engine, const char *uri);
-};
-
-QT_END_NAMESPACE
-
-QT_END_HEADER
-
-#endif // ETCPROVIDERPLUGIN_H
-