blob: 79f1e8178e10107f33b420eb2a50c5a05218ae33 [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
Daniel Dunbare1bd4e62009-03-02 06:16:29 +000014#include "clang/Frontend/ManagerRegistry.h"
Zhongxing Xu22438a82008-11-27 01:55:08 +000015
16using namespace clang;
17
18StoreManagerCreator ManagerRegistry::StoreMgrCreator = 0;
19
20ConstraintManagerCreator ManagerRegistry::ConstraintMgrCreator = 0;