Fixed program checking and executing report

This commit is contained in:
2023-04-28 18:42:18 +03:00
parent 0b8f5a6950
commit b361b6b2fe
7 changed files with 159 additions and 48 deletions
+2 -2
View File
@@ -29,8 +29,8 @@ struct program {
program() = default;
explicit program(std::string filename);
bool load(std::string filename);
bool load(std::istream& in);
bool load_from_file(std::string filename);
bool load_from_stream(std::istream& in);
bool load_from_string(const std::string& content);
void dump(std::ostream& out);