cprover
expr_initializer.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Expression Initialization
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_UTIL_EXPR_INITIALIZER_H
13 #define CPROVER_UTIL_EXPR_INITIALIZER_H
14 
15 #include "expr.h"
16 
17 class message_handlert;
18 class namespacet;
19 class source_locationt;
20 
22  const typet &,
23  const source_locationt &,
24  const namespacet &,
26 
28  const typet &,
29  const source_locationt &,
30  const namespacet &,
32 
33 // throws a char* in case of failure
35  const typet &,
36  const source_locationt &,
37  const namespacet &);
38 
40  const typet &type,
41  const source_locationt &source_location,
42  const namespacet &ns);
43 
44 #endif // CPROVER_UTIL_EXPR_INITIALIZER_H
The type of an expression.
Definition: type.h:22
exprt zero_initializer(const typet &, const source_locationt &, const namespacet &, message_handlert &)
exprt nondet_initializer(const typet &, const source_locationt &, const namespacet &, message_handlert &)
TO_BE_DOCUMENTED.
Definition: namespace.h:74
Base class for all expressions.
Definition: expr.h:42