Vuo 2.4.4
Loading...
Searching...
No Matches
VuoCompilerGenericType.hh
Go to the documentation of this file.
1
10#pragma once
11
12#include "VuoCompilerType.hh"
13
14class VuoGenericType;
15
23{
24public:
25 static VuoCompilerGenericType * newGenericType(VuoGenericType *baseType, std::function<VuoCompilerType *(const string &)> lookUpType);
26 static string chooseBackingTypeName(string genericTypeName, vector<string> compatibleTypeNames);
27
28 string getBackingTypeName(void);
29
30private:
32
33 static const string defaultBackingTypeName;
34};