00001 /* 00002 * Copyright 2006 Sony Computer Entertainment Inc. 00003 * 00004 * Licensed under the MIT Open Source License, for details please see license.txt or the website 00005 * http://www.opensource.org/licenses/mit-license.php 00006 * 00007 */ 00008 00009 #ifndef __domGl_hook_abstract_h__ 00010 #define __domGl_hook_abstract_h__ 00011 00012 #include <dae/daeDocument.h> 00013 #include <dom/domTypes.h> 00014 #include <dom/domElements.h> 00015 00016 class DAE; 00017 00018 class domGl_hook_abstract : public daeElement 00019 { 00020 public: 00021 virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::GL_HOOK_ABSTRACT; } 00022 static daeInt ID() { return 729; } 00023 virtual daeInt typeID() const { return ID(); } 00024 00025 protected: 00029 domGl_hook_abstract(DAE& dae) : daeElement(dae) {} 00033 virtual ~domGl_hook_abstract() {} 00037 virtual domGl_hook_abstract &operator=( const domGl_hook_abstract &cpy ) { (void)cpy; return *this; } 00038 00039 public: // STATIC METHODS 00044 static DLLSPEC daeElementRef create(DAE& dae); 00050 static DLLSPEC daeMetaElement* registerElement(DAE& dae); 00051 }; 00052 00053 00054 #endif