Vuo  2.3.2
VuoCompilerConstantsCache.hh
Go to the documentation of this file.
1 
10 #pragma once
11 
16 {
17 public:
18  explicit VuoCompilerConstantsCache(Module *module);
19  Constant * get(const string &s);
20  Constant * get(const vector<size_t> &a);
21 
22 private:
23  Module *module;
24  map<string, Constant *> constantStrings;
25  map< vector<size_t>, Constant * > constantArraysOfUnsignedLongs;
26 };