aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/abstracteditorsupport.h
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@digia.com>2013-11-25 15:22:58 +0100
committerNikolai Kosjar <nikolai.kosjar@digia.com>2013-11-25 17:40:30 +0100
commit51d91a6075164f4168c06db3e53fc04e1dd3eb8e (patch)
tree33e5087137a84eba7e5f1a6b3d6a786a1a834105 /src/plugins/cpptools/abstracteditorsupport.h
parentb7d0d968f9a2369f3a111be5d3a362f28fe3b8cd (diff)
CppTools: Add revisions to AbstractEditorSupport
So far revisions for AbstractEditorSupport were not needed because until recently we only had a single snapshot ("global snapshot"). Now, since editor snapshots are introduced, we need to make sure to update the corresponding documents in these snapshots, too. To do this efficiently, a revision is introduced for AbstractEditorSupport. Task-number: QTCREATORBUG-10894 Change-Id: Ibad1dbbafb7c721d1328959c1e903345fe465326 Reviewed-by: Christian Stenger <christian.stenger@digia.com> Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'src/plugins/cpptools/abstracteditorsupport.h')
-rw-r--r--src/plugins/cpptools/abstracteditorsupport.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/cpptools/abstracteditorsupport.h b/src/plugins/cpptools/abstracteditorsupport.h
index e45a50e791..9b5616c690 100644
--- a/src/plugins/cpptools/abstracteditorsupport.h
+++ b/src/plugins/cpptools/abstracteditorsupport.h
@@ -50,6 +50,7 @@ public:
virtual QString fileName() const = 0;
void updateDocument();
+ unsigned revision() const { return m_revision; }
// TODO: find a better place for common utility functions
static QString functionAt(const CppModelManagerInterface *mm,
@@ -60,6 +61,7 @@ public:
private:
CppModelManagerInterface *m_modelmanager;
+ unsigned m_revision;
};
} // namespace CppTools