diff options
Diffstat (limited to 'src/shared/cplusplus/Symbols.h')
-rw-r--r-- | src/shared/cplusplus/Symbols.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/shared/cplusplus/Symbols.h b/src/shared/cplusplus/Symbols.h index 2a90fd0cc0..05a1241ec4 100644 --- a/src/shared/cplusplus/Symbols.h +++ b/src/shared/cplusplus/Symbols.h @@ -234,6 +234,14 @@ public: virtual ScopedSymbol *asScopedSymbol() { return this; } + /// Set the start offset of the scope for this symbol + unsigned startOffset() const; + void setStartOffset(unsigned offset); + + /// Set the end offset of the scope for this symbol + unsigned endOffset() const; + void setEndOffset(unsigned offset); + private: Scope *_members; }; |