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/deprecate.h>
18 #include <util/optional.h>
19 
20 class goto_functionst;
21 class goto_modelt;
22 class message_handlert;
23 class symbol_tablet;
24 
26 read_goto_binary(const std::string &filename, message_handlert &);
27 
28 bool is_goto_binary(const std::string &filename, message_handlert &);
29 
31  const std::string &file_name,
32  symbol_tablet &,
35 
37  const std::string &file_name,
38  goto_modelt &,
40 
41 #endif // CPROVER_GOTO_PROGRAMS_READ_GOTO_BINARY_H
symbol_tablet
The symbol table.
Definition: symbol_table.h:20
is_goto_binary
bool is_goto_binary(const std::string &filename, message_handlert &)
Definition: read_goto_binary.cpp:190
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:307
deprecate.h
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:40
goto_functionst
A collection of goto functions.
Definition: goto_functions.h:23