blob: eea098875707a6df546b08773546d99d5ed976bc [file] [log] [blame]
Argyrios Kyrtzidisb17dc462009-07-29 23:38:21 +00001//===- IndexProvider.cpp - Maps information to translation units -*- C++ -*-==//
Argyrios Kyrtzidis9eec4ed2009-07-05 22:22:19 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
Argyrios Kyrtzidisb17dc462009-07-29 23:38:21 +00006// License. See LICENSE.TXT for details.
Argyrios Kyrtzidis9eec4ed2009-07-05 22:22:19 +00007//
8//===----------------------------------------------------------------------===//
9//
Argyrios Kyrtzidisb17dc462009-07-29 23:38:21 +000010// Maps information to TranslationUnits.
Argyrios Kyrtzidis9eec4ed2009-07-05 22:22:19 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Index/IndexProvider.h"
Argyrios Kyrtzidisf7cf15c2009-07-21 00:07:06 +000015#include "clang/Index/Entity.h"
Argyrios Kyrtzidis9eec4ed2009-07-05 22:22:19 +000016using namespace clang;
17using namespace idx;
18
Argyrios Kyrtzidisb17dc462009-07-29 23:38:21 +000019// Out-of-line to give the virtual table a home.
20IndexProvider::~IndexProvider() { }