summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Info.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-28 00:24:06 +0000
committerDavid Robillard <d@drobilla.net>2012-05-28 00:24:06 +0000
commitcd553ca68f8a2918748989e2cdd50e1a69f380c4 (patch)
treed9d7ecc4166d858a83a029028841bf37d85819fb /src/server/LV2Info.hpp
parentd8c07248dee91e0b99e6f940c212c3316b2727e1 (diff)
downloadingen-cd553ca68f8a2918748989e2cdd50e1a69f380c4.tar.gz
ingen-cd553ca68f8a2918748989e2cdd50e1a69f380c4.tar.bz2
ingen-cd553ca68f8a2918748989e2cdd50e1a69f380c4.zip
Cache lilv nodes used for instantiation in LV2Info.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4469 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/LV2Info.hpp')
-rw-r--r--src/server/LV2Info.hpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/server/LV2Info.hpp b/src/server/LV2Info.hpp
index 2c31b243..4a12f5cd 100644
--- a/src/server/LV2Info.hpp
+++ b/src/server/LV2Info.hpp
@@ -33,12 +33,17 @@ public:
explicit LV2Info(Ingen::Shared::World* world);
~LV2Info();
- LilvNode* input_class;
- LilvNode* output_class;
- LilvNode* control_class;
- LilvNode* cv_class;
- LilvNode* audio_class;
- LilvNode* atom_port_class;
+ LilvNode* atom_AtomPort;
+ LilvNode* atom_bufferType;
+ LilvNode* atom_supports;
+ LilvNode* lv2_AudioPort;
+ LilvNode* lv2_CVPort;
+ LilvNode* lv2_ControlPort;
+ LilvNode* lv2_InputPort;
+ LilvNode* lv2_OutputPort;
+ LilvNode* lv2_default;
+ LilvNode* lv2_portProperty;
+ LilvNode* rsz_minimumSize;
Ingen::Shared::World& world() { return *_world; }
LilvWorld* lv2_world() { return _world->lilv_world(); }