3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 03:15:50 +00:00
z3/src/ast/reg_decl_plugins.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

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