Vuo  2.3.2
VuoCompilerComment.hh
Go to the documentation of this file.
1 
10 #pragma once
11 
12 #include "VuoBaseDetail.hh"
13 
14 class VuoComment;
15 
19 class VuoCompilerComment : public VuoBaseDetail<VuoComment>
20 {
21 private:
22  string graphvizIdentifier;
23 
24 public:
25  VuoCompilerComment(VuoComment *baseComment);
26 
27  string getGraphvizIdentifierPrefix(void);
28  string getGraphvizIdentifier(void);
29  void setGraphvizIdentifier(string graphvizIdentifier);
30  string getGraphvizDeclaration(double xPositionOffset = 0, double yPositionOffset = 0);
31 };