2009-07-30 07:38:21 +08:00
|
|
|
//===- IndexProvider.cpp - Maps information to translation units -*- C++ -*-==//
|
2009-07-06 06:22:19 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
2009-07-30 07:38:21 +08:00
|
|
|
// License. See LICENSE.TXT for details.
|
2009-07-06 06:22:19 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-07-30 07:38:21 +08:00
|
|
|
// Maps information to TranslationUnits.
|
2009-07-06 06:22:19 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Index/IndexProvider.h"
|
2009-07-21 08:07:06 +08:00
|
|
|
#include "clang/Index/Entity.h"
|
2009-07-06 06:22:19 +08:00
|
|
|
using namespace clang;
|
|
|
|
using namespace idx;
|
|
|
|
|
2009-07-30 07:38:21 +08:00
|
|
|
// Out-of-line to give the virtual table a home.
|
|
|
|
IndexProvider::~IndexProvider() { }
|