mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-01 01:31:26 +00:00
a82e8848ee
TULocation is like ASTLocation but also contains the TranslationUnit* that the ASTLocation originated from. llvm-svn: 77535
23 lines
775 B
C++
23 lines
775 B
C++
//===--- Handlers.cpp - Interfaces for receiving information ----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Abstract interfaces for receiving information.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Index/Handlers.h"
|
|
#include "clang/Index/Entity.h"
|
|
using namespace clang;
|
|
using namespace idx;
|
|
|
|
// Out-of-line to give the virtual tables a home.
|
|
EntityHandler::~EntityHandler() { }
|
|
TranslationUnitHandler::~TranslationUnitHandler() { }
|
|
TULocationHandler::~TULocationHandler() { }
|