mirror of
https://github.com/Jaxan/hybrid-ads.git
synced 2025-04-27 15:07:45 +02:00
7 lines
179 B
C++
7 lines
179 B
C++
#pragma once
|
|
|
|
#include <iosfwd>
|
|
|
|
struct Mealy;
|
|
Mealy read_mealy_from_dot(const std::string & filename, int verbose);
|
|
Mealy read_mealy_from_dot(std::istream & input, int verbose);
|