dom.h 931 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright 2006 Sony Computer Entertainment Inc.
  3. *
  4. * Licensed under the SCEA Shared Source License, Version 1.0 (the "License"); you may not use this
  5. * file except in compliance with the License. You may obtain a copy of the License at:
  6. * http://research.scea.com/scea_shared_source_license.html
  7. *
  8. * Unless required by applicable law or agreed to in writing, software distributed under the License
  9. * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  10. * implied. See the License for the specific language governing permissions and limitations under the
  11. * License.
  12. */
  13. #ifndef __DOM__
  14. #define __DOM__
  15. class DAE;
  16. class daeMetaElement;
  17. extern daeString COLLADA_VERSION;
  18. extern daeString COLLADA_NAMESPACE;
  19. // Register all types
  20. void registerDomTypes(DAE& dae);
  21. // Register all elements
  22. daeMetaElement* registerDomElements(DAE& dae);
  23. #endif // __DOM_INTERFACE__