diff options
author | Nikolai Kosjar <nikolai.kosjar@digia.com> | 2014-07-30 16:29:02 +0200 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@digia.com> | 2014-08-20 10:26:47 +0200 |
commit | b8a6a4dd4e2a02d9afd54303550570f1fcbcb586 (patch) | |
tree | 51472b8c5c73e17900b78c65ce7286f9cd9b8eb5 /src/plugins/cpptools/cppworkingcopy.h | |
parent | 077bbf6803d4f3d81622720c9452a7e1a00c81fb (diff) | |
download | qt-creator-b8a6a4dd4e2a02d9afd54303550570f1fcbcb586.tar.gz |
CppTools: Move WorkingCopy to new cppworkingcopy.{h,cpp}
Change-Id: I447acf28849bffb52c1e6b6eafdde221ec0b179e
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cppworkingcopy.h')
-rw-r--r-- | src/plugins/cpptools/cppworkingcopy.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/src/plugins/cpptools/cppworkingcopy.h b/src/plugins/cpptools/cppworkingcopy.h new file mode 100644 index 0000000000..3775838885 --- /dev/null +++ b/src/plugins/cpptools/cppworkingcopy.h @@ -0,0 +1,71 @@ +/**************************************************************************** +** +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal +** +** This file is part of Qt Creator. +** +** 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. +** +****************************************************************************/ + +#ifndef CPPWORKINGCOPY_H +#define CPPWORKINGCOPY_H + +#include "cpptools_global.h" + +#include <QHash> +#include <QString> +#include <QPair> + +namespace CppTools { + +class CPPTOOLS_EXPORT WorkingCopy +{ +public: + WorkingCopy(); + + void insert(const QString &fileName, const QByteArray &source, unsigned revision = 0) + { _elements.insert(fileName, qMakePair(source, revision)); } + + bool contains(const QString &fileName) const + { return _elements.contains(fileName); } + + QByteArray source(const QString &fileName) const + { return _elements.value(fileName).first; } + + QPair<QByteArray, unsigned> get(const QString &fileName) const + { return _elements.value(fileName); } + + QHashIterator<QString, QPair<QByteArray, unsigned> > iterator() const + { return QHashIterator<QString, QPair<QByteArray, unsigned> >(_elements); } + + int size() const + { return _elements.size(); } + +private: + typedef QHash<QString, QPair<QByteArray, unsigned> > Table; + Table _elements; +}; + +} // namespace CppTools + +#endif // CPPWORKINGCOPY_H |