aboutsummaryrefslogtreecommitdiff
path: root/lib/Index/Handlers.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2009-07-29 23:38:21 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2009-07-29 23:38:21 +0000
commitb17dc46c795d5eceeceb1424b96d63739d12a522 (patch)
treed41ccd8f87a22fa6ff2efea2375c96c088b1a640 /lib/Index/Handlers.cpp
parent8e9e9ef5348bce1a8f0741a5684fac3de9701c28 (diff)
-Make IndexProvider an abstract interface for getting indexing information.
-Introduce Indexer as an IndexProvider implementation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77524 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Index/Handlers.cpp')
-rw-r--r--lib/Index/Handlers.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/Index/Handlers.cpp b/lib/Index/Handlers.cpp
new file mode 100644
index 0000000000..c94314b295
--- /dev/null
+++ b/lib/Index/Handlers.cpp
@@ -0,0 +1,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() { }