bin: separate process_file() for aut and ltl

* bin/common_finput.cc, bin/common_finput.hh,
bin/common_hoaread.hh (process_file): Split into...
(process_ltl_file, process_aut_filt): ... these, as we will need both
in ltlsynt.
This commit is contained in:
Alexandre Duret-Lutz 2022-06-22 14:33:16 +02:00
parent 8161a8c531
commit df685433f4
3 changed files with 19 additions and 6 deletions

View file

@ -72,7 +72,10 @@ public:
process_stream(std::istream& is, const char* filename);
virtual int
process_file(const char* filename);
process_ltl_file(const char* filename);
virtual int
process_aut_file(const char* filename);
virtual int
run();