X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/4cf57e6db08da791233d75237f62e74bc88dd427..9bfa0c13066918f440ac2b5461fb3f8847f43fd6:/Graph.cpp diff --git a/Graph.cpp b/Graph.cpp index bd1eb70..5b491b0 100644 --- a/Graph.cpp +++ b/Graph.cpp @@ -192,3 +192,12 @@ void Graph::computeOutputPatterns(int nbExec) throw(Exception) { throw(e); } } + +void Graph::generateVHDL(const QString &path) throw(Exception) { + try { + topGroup->generateVHDL(path); + } + catch(Exception e) { + throw(e); + } +}