CBMC
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
expr2cpp.h
Go to the documentation of this file.
1/*******************************************************************\
2
3Module:
4
5Author: Daniel Kroening, kroening@cs.cmu.edu
6
7\*******************************************************************/
8
9
10#ifndef CPROVER_CPP_EXPR2CPP_H
11#define CPROVER_CPP_EXPR2CPP_H
12
13#include <string>
14
15class exprt;
16class namespacet;
17class typet;
18
19std::string expr2cpp(const exprt &expr, const namespacet &ns);
20std::string type2cpp(const typet &type, const namespacet &ns);
21
22#endif // CPROVER_CPP_EXPR2CPP_H
Base class for all expressions.
Definition expr.h:56
A namespacet is essentially one or two symbol tables bound together, to allow for symbol lookups in t...
Definition namespace.h:91
The type of an expression, extends irept.
Definition type.h:29
std::string type2cpp(const typet &type, const namespacet &ns)
Definition expr2cpp.cpp:493
std::string expr2cpp(const exprt &expr, const namespacet &ns)
Definition expr2cpp.cpp:486