Home | History | Annotate | Download | only in dae
      1 /*
      2 * Copyright 2006 Sony Computer Entertainment Inc.
      3 *
      4 * Licensed under the MIT Open Source License, for details please see license.txt or the website
      5 * http://www.opensource.org/licenses/mit-license.php
      6 *
      7 */
      8 
      9 #include <dae/daeMetaCMPolicy.h>
     10 
     11 daeMetaCMPolicy::~daeMetaCMPolicy()
     12 {
     13 	for( size_t i = 0; i < _children.getCount(); i++ ) {
     14 		delete _children[i];
     15 	}
     16 }
     17 
     18