clang API Documentation

Handlers.cpp
Go to the documentation of this file.
00001 //===--- Handlers.cpp - Interfaces for receiving information ----*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 //
00010 //  Abstract interfaces for receiving information.
00011 //
00012 //===----------------------------------------------------------------------===//
00013 
00014 #include "clang/Index/Handlers.h"
00015 #include "clang/Index/Entity.h"
00016 using namespace clang;
00017 using namespace idx;
00018 
00019 // Out-of-line to give the virtual tables a home.
00020 EntityHandler::~EntityHandler() { }
00021 TranslationUnitHandler::~TranslationUnitHandler() { }
00022 TULocationHandler::~TULocationHandler() { }