3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

Isolating reg_decl_plugins

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-24 11:27:50 -07:00
parent 69ce24a6ce
commit 641db30660
33 changed files with 140 additions and 70 deletions

View file

@ -0,0 +1,27 @@
/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
reg_decl_plugins
Abstract:
Goodie for installing all available declarations
plugins in an ast_manager
Author:
Leonardo de Moura (leonardo) 2012-10-24.
Revision History:
--*/
#ifndef _REG_DECL_PLUGINS_H_
#define _REG_DECL_PLUGINS_H_
class ast_manager;
void reg_decl_plugins(ast_manager & m);
#endif