Skip to content

Commit f36bc65

Browse files
author
Daniel Kroening
committed
add documentation to read_goto_binary and read_object_and_link
1 parent d54d101 commit f36bc65

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/goto-programs/read_goto_binary.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,33 @@ class goto_modelt;
1919
class message_handlert;
2020
class symbol_tablet;
2121

22+
// Read given goto binary
23+
// Does not update config
2224
bool read_goto_binary(
2325
const std::string &filename,
2426
symbol_tablet &,
2527
goto_functionst &,
2628
message_handlert &);
2729

30+
// Read given goto binary
31+
// Does not update config
2832
bool read_goto_binary(
2933
const std::string &filename,
3034
goto_modelt &dest,
3135
message_handlert &);
3236

3337
bool is_goto_binary(const std::string &filename);
3438

39+
// Read given goto binary and link to existing context
40+
// Also updates config
3541
bool read_object_and_link(
3642
const std::string &file_name,
3743
symbol_tablet &,
3844
goto_functionst &,
3945
message_handlert &);
4046

47+
// Read given goto binary and link to existing context
48+
// Also updates config
4149
bool read_object_and_link(
4250
const std::string &file_name,
4351
goto_modelt &,

0 commit comments

Comments
 (0)