Home | History | Annotate | Download | only in include
      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 #ifndef __DOM__
      9 #define __DOM__
     10 
     11 class DAE;
     12 class daeMetaElement;
     13 
     14 extern daeString COLLADA_VERSION;
     15 extern daeString COLLADA_NAMESPACE;
     16 
     17 // Register all types
     18 void registerDomTypes(DAE& dae);
     19 
     20 // Register all elements
     21 daeMetaElement* registerDomElements(DAE& dae);
     22 
     23 
     24 #endif // __DOM_INTERFACE__
     25