1
Fork 0
mirror of https://github.com/Jaxan/hybrid-ads.git synced 2025-04-27 15:07:45 +02:00
hybrid-ads/lib/read_mealy_from_dot.hpp
2015-03-19 17:25:09 +01:00

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);