Vuo  2.4.0
VuoType.cc
Go to the documentation of this file.
1
10#include "VuoType.hh"
11#include "VuoStringUtilities.hh"
12
13
15const string VuoType::listTypeNamePrefix = "VuoList_";
16
18const string VuoType::dictionaryTypeNamePrefix = "VuoDictionary_";
19
20
26VuoType::VuoType(string typeName)
27 : VuoBase<VuoCompilerType,void>("VuoType"),
28 VuoModule(typeName)
29{
30}
31
33{
34}
35
39bool VuoType::isListTypeName(string typeName)
40{
42}
43
47bool VuoType::isDictionaryTypeName(string typeName)
48{
50}
51
56string VuoType::extractInnermostTypeName(string typeName)
57{
60
61 return typeName;
62}