cprover
read_goto_binary.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Read Goto Programs
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_GOTO_PROGRAMS_READ_GOTO_BINARY_H
13 #define CPROVER_GOTO_PROGRAMS_READ_GOTO_BINARY_H
14 
15 #include <string>
16 
17 #include <util/optional.h>
18 
19 class goto_functionst;
20 class goto_modelt;
21 class message_handlert;
22 class symbol_tablet;
23 
25 read_goto_binary(const std::string &filename, message_handlert &);
26 
27 bool is_goto_binary(const std::string &filename, message_handlert &);
28 
30  const std::string &file_name,
31  symbol_tablet &,
34 
36  const std::string &file_name,
37  goto_modelt &,
39 
40 #endif // CPROVER_GOTO_PROGRAMS_READ_GOTO_BINARY_H
symbol_tablet
The symbol table.
Definition: symbol_table.h:14
is_goto_binary
bool is_goto_binary(const std::string &filename, message_handlert &)
Definition: read_goto_binary.cpp:191
optional.h
goto_modelt
Definition: goto_model.h:26
read_object_and_link
bool read_object_and_link(const std::string &file_name, symbol_tablet &, goto_functionst &, message_handlert &)
reads an object file, and also updates the config
Definition: read_goto_binary.cpp:308
message_handlert
Definition: message.h:28
optionalt
nonstd::optional< T > optionalt
Definition: optional.h:35
read_goto_binary
optionalt< goto_modelt > read_goto_binary(const std::string &filename, message_handlert &)
Read a goto binary from a file, but do not update config.
Definition: read_goto_binary.cpp:41
goto_functionst
A collection of goto functions.
Definition: goto_functions.h:25