Skip to content
Snippets Groups Projects
Commit 83b5f431 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Reorder members of CppQuickFixOp

parent 3e93c5ef
No related branches found
No related tags found
No related merge requests found
......@@ -61,6 +61,9 @@ public:
virtual QString description() const = 0;
virtual int match(const QList<CPlusPlus::AST *> &path) = 0;
virtual void createChangeSet() = 0;
void applyChangeSet();
CPlusPlus::Document::Ptr document() const;
void setDocument(CPlusPlus::Document::Ptr document);
......@@ -79,13 +82,10 @@ public:
const Utils::ChangeSet &changeSet() const;
protected:
CPlusPlus::AST *topLevelNode() const;
void setTopLevelNode(CPlusPlus::AST *topLevelNode);
virtual void createChangeSet() = 0;
void applyChangeSet();
protected:
const CPlusPlus::Token &tokenAt(unsigned index) const;
int startOf(unsigned index) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment