dom.h 512 B

123456789101112131415161718192021222324
  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. class DAE;
  11. class daeMetaElement;
  12. extern daeString COLLADA_VERSION;
  13. extern daeString COLLADA_NAMESPACE;
  14. // Register all types
  15. void registerDomTypes(DAE& dae);
  16. // Register all elements
  17. daeMetaElement* registerDomElements(DAE& dae);
  18. #endif // __DOM_INTERFACE__