| 36 | using namespace boost::python; |
| 37 | |
| 38 | ImageCacheWrap* ImageCacheWrap::create (bool shared=true) |
| 39 | { |
| 40 | ImageCacheWrap *icw = new ImageCacheWrap; |
| 41 | icw->m_cache = ImageCache::create(shared); |
| 42 | return icw; |
| 43 | } |
| 44 | |
| 45 | void ImageCacheWrap::destroy (ImageCacheWrap *x) |
| 46 | { |
no outgoing calls