blob: 0748fd9a35d672c6159f3a9601d010d8b90c5e17 [file] [log] [blame]
Zhongxing Xu5abf03b2008-11-27 02:19:10 +00001//===- ManagerRegistry.cpp - Pluggble Analyzer module creators --*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the pluggable analyzer module creators.
11//
12//===----------------------------------------------------------------------===//
13
Zhongxing Xu22438a82008-11-27 01:55:08 +000014#include "clang/Driver/ManagerRegistry.h"
15
16using namespace clang;
17
18StoreManagerCreator ManagerRegistry::StoreMgrCreator = 0;
19
20ConstraintManagerCreator ManagerRegistry::ConstraintMgrCreator = 0;