diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-29 23:39:18 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-29 23:39:18 +0000 |
commit | 768a6c94a52ddf4f2f6d0c6d611db6cf224b1a1c (patch) | |
tree | b6576a507a4dc50cc8af0d91e997312335d814c4 /include/clang | |
parent | 0594545b5b31ff543fb6016a3ae35ee78b51b984 (diff) |
Add getDeclReferenceMap() to the abstract interface of TranslationUnit class.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Index/TranslationUnit.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Index/TranslationUnit.h b/include/clang/Index/TranslationUnit.h index 06c42dc4e5..55417d4eb6 100644 --- a/include/clang/Index/TranslationUnit.h +++ b/include/clang/Index/TranslationUnit.h @@ -18,12 +18,14 @@ namespace clang { class ASTContext; namespace idx { + class DeclReferenceMap; /// \brief Abstract interface for a translation unit. class TranslationUnit { public: virtual ~TranslationUnit(); virtual ASTContext &getASTContext() = 0; + virtual DeclReferenceMap &getDeclReferenceMap() = 0; }; } // namespace idx |