aboutsummaryrefslogtreecommitdiff
path: root/src/corelib/style/muniquestringcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/style/muniquestringcache.h')
-rw-r--r--src/corelib/style/muniquestringcache.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/corelib/style/muniquestringcache.h b/src/corelib/style/muniquestringcache.h
deleted file mode 100644
index 7a4349c7..00000000
--- a/src/corelib/style/muniquestringcache.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/***************************************************************************
-**
-** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (directui@nokia.com)
-**
-** This file is part of libmeegotouch.
-**
-** If you have questions regarding the use of this file, please contact
-** Nokia at directui@nokia.com.
-**
-** This library is free software; you can redistribute it and/or
-** modify it 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.
-**
-****************************************************************************/
-
-#ifndef MUNIQUESTRINGCACHE_H
-#define MUNIQUESTRINGCACHE_H
-
-#include <QByteArray>
-
-class MUniqueStringCache
-{
-public:
- typedef int Index;
- static const Index UndefinedIndex = -1;
- static const Index EmptyStringIndex = 0;
-
- static bool isAttached();
- static Index stringToIndex(const QByteArray& string);
- static QByteArray indexToString(Index id);
-};
-
-#endif // MUNIQUESTRINGCACHE_H