AnimHeap.cpp
Go to the documentation of this file.
1 #include "AnimHeap.hpp"
3 
4 namespace iv
5 {
6 
8  cm( inst, this, "AnimHeap" ),
9  inst( inst ),
10  heap( inst, &this->cm )
11 {
12 }
13 
15 {
16 }
17 
19 {
20  return this->inst;
21 }
22 
24 {
25  return this->heap.template createClient< iv::Lambda_Connector >();
26 }
27 
29 {
30  auto node = this->heap.template createClient< iv::AnimNodeI >();
31  this->nodes.insert( node );
32  return node;
33 }
34 
35 }