blob: 23974d5f9bf453d36420a64dc8f7cfd3b04a8a3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <corelib_global.h>
namespace QmlDesigner {
namespace Internal {
class ModelRewriter;
class ModelPrivate;
}
/*!
\class QmlDesigner::ModificationGroupToken
\ingroup CoreModel
\brief TBD
*/
class CORESHARED_EXPORT ModificationGroupToken
{
friend class Internal::ModelRewriter;
friend class Internal::ModelPrivate;
public:
ModificationGroupToken(): m_depth(0), m_uniqueNumber(-1) {}
unsigned depth() const { return m_depth; }
bool isValid() const { return m_uniqueNumber != -1; }
bool operator==(const ModificationGroupToken& token) const { return m_uniqueNumber == token.m_uniqueNumber; }
bool operator!=(const ModificationGroupToken& token) const { return m_uniqueNumber != token.m_uniqueNumber; }
private:
void makeInvalid() { m_uniqueNumber = -1; }
ModificationGroupToken(unsigned depth);
private:
static long uniqueNumberCounter;
unsigned m_depth;
long m_uniqueNumber;
};
}
|