mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 03:15:50 +00:00
27 lines
382 B
C++
27 lines
382 B
C++
/*++
|
|
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
|