aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlintegercache_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-06-27 16:47:06 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-06-28 14:56:20 +0200
commit7259642e35fc8a1d354697f8b1700cbadd540870 (patch)
tree72253c00d19777677007eae052af1f1b5b0c186b /src/qml/qml/qqmlintegercache_p.h
parentf418bbb8836a648bdd08728e88323a4c8db9140c (diff)
Get rid of QQmlIntegerCache
Replace by the new IdentifierIntHash. Change-Id: Ib210cd898a30ad3e2f9349387e1a74d92ed5f831 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlintegercache_p.h')
-rw-r--r--src/qml/qml/qqmlintegercache_p.h97
1 files changed, 0 insertions, 97 deletions
diff --git a/src/qml/qml/qqmlintegercache_p.h b/src/qml/qml/qqmlintegercache_p.h
deleted file mode 100644
index 98b57af279..0000000000
--- a/src/qml/qml/qqmlintegercache_p.h
+++ /dev/null
@@ -1,97 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtQml module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, 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, Digia gives you certain additional
-** rights. These rights are described in the Digia 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.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef QQMLINTEGERCACHE_P_H
-#define QQMLINTEGERCACHE_P_H
-
-//
-// W A R N I N G
-// -------------
-//
-// This file is not part of the Qt API. It exists purely as an
-// implementation detail. This header file may change from version to
-// version without notice, or even be removed.
-//
-// We mean it.
-//
-
-#include <private/qqmlrefcount_p.h>
-#include <private/qhashedstring_p.h>
-
-QT_BEGIN_NAMESPACE
-
-class QQmlType;
-class QQmlEngine;
-class QQmlIntegerCache : public QQmlRefCount
-{
-public:
- QQmlIntegerCache();
- virtual ~QQmlIntegerCache();
-
- inline int count() const;
- void add(const QString &, int);
- void reserve(int);
-
- int value(const QString &);
- inline int value(const QV4::String *);
-
- QString findId(int value) const;
-
-private:
- typedef QStringHash<int> StringCache;
- StringCache stringCache;
-};
-
-int QQmlIntegerCache::value(const QV4::String *name)
-{
- int *result = stringCache.value(name);
- return result?*result:-1;
-}
-
-int QQmlIntegerCache::count() const
-{
- return stringCache.count();
-}
-
-QT_END_NAMESPACE
-
-#endif // QQMLINTEGERCACHE_P_H
-