blob: c94314b2953bb9ba16ebb3cb0f32a4f2881bb88e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//===--- 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() { }
|