mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 10:05:32 +00:00
Reorganizing code. Added script for generating VS project files
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
2c464d413d
commit
8a6997960a
68 changed files with 167 additions and 170 deletions
34
src/ast/pp.h
Normal file
34
src/ast/pp.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
/*++
|
||||
Copyright (c) 2006 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
pp.h
|
||||
|
||||
Abstract:
|
||||
|
||||
<abstract>
|
||||
|
||||
Author:
|
||||
|
||||
Leonardo de Moura (leonardo) 2008-01-20.
|
||||
|
||||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _PP_H_
|
||||
#define _PP_H_
|
||||
|
||||
#include"format.h"
|
||||
#include"pp_params.h"
|
||||
|
||||
void set_pp_default_params(pp_params const & p);
|
||||
void register_pp_params(ini_params & p);
|
||||
|
||||
pp_params const & get_pp_default_params();
|
||||
|
||||
void pp(std::ostream & out, format_ns::format * f, ast_manager & m, pp_params const & p);
|
||||
void pp(std::ostream & out, format_ns::format * f, ast_manager & m);
|
||||
|
||||
#endif /* _PP_H_ */
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue