Vuo 2.4.4
Loading...
Searching...
No Matches
VuoDependencyGraphVertex.hh
Go to the documentation of this file.
1
10#pragma once
11
14
19{
20public:
21 static VuoDependencyGraphVertex * vertexForDependency(const string &dependency, VuoDirectedAcyclicGraph *graph);
22 string getDependency(void);
24 void setEnvironment(VuoCompilerEnvironment *environment);
25 string key(void);
26
27private:
28 string dependency;
29 VuoCompilerEnvironment *environment;
30 bool compatible;
31};