projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Refactoring of process classes in faustexp.ml.
[Faustine.git]
/
interpretor
/
faust-0.9.47mr3
/
compiler
/
headers
/
sigToGraph.hh
1
#ifndef SIGTOGRAPH_HH
2
#define SIGTOGRAPH_HH
3
4
#include "signals.hh"
5
#include <string>
6
#include <iostream>
7
#include <fstream>
8
#include "sigraterules.hh"
9
10
using namespace std;
11
12
/**
13
* Draw a list of signals L as a directed graph using
14
* graphviz's dot language
15
*/
16
void sigToGraph (Tree sig, ofstream& fout, RateInferrer* R);
17
18
#endif // SIGTOGRAPH_HH