cprover
expr2c.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module:
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
9 
10 #ifndef CPROVER_ANSI_C_EXPR2C_H
11 #define CPROVER_ANSI_C_EXPR2C_H
12 
13 #include <string>
14 
15 class exprt;
16 class namespacet;
17 class typet;
18 
19 std::string expr2c(const exprt &expr, const namespacet &ns);
20 std::string type2c(const typet &type, const namespacet &ns);
21 
22 #endif // CPROVER_ANSI_C_EXPR2C_H
The type of an expression.
Definition: type.h:20
TO_BE_DOCUMENTED.
Definition: namespace.h:62
std::string type2c(const typet &type, const namespacet &ns)
Definition: expr2c.cpp:3882
Base class for all expressions.
Definition: expr.h:46
std::string expr2c(const exprt &expr, const namespacet &ns)
Definition: expr2c.cpp:3874