00001 //*************************************************************************************** 00002 // 00003 // File supervisor: Crosswalk team 00004 // 00005 // Copyright 2008 Autodesk, Inc. All rights reserved. 00006 // Use of this software is subject to the terms of the Autodesk license agreement 00007 // provided at the time of installation or download, or which otherwise accompanies 00008 // this software in either electronic or hard copy form. 00009 // 00010 //*************************************************************************************** 00011 00012 #ifndef _COLLADAINSTANCE_H 00013 #define _COLLADAINSTANCE_H 00014 00015 #include <Instance.h> 00016 00018 class XSIEXPORT CSLCOLLADAInstance 00019 : public CSLInstance 00020 { 00021 public: 00028 CSLCOLLADAInstance(CSLScene* in_pScene, CSLModel *in_pModel, CdotXSITemplate* in_pTemplate) : CSLInstance(in_pScene, in_pModel, in_pTemplate){}; 00029 00032 virtual ~CSLCOLLADAInstance() {}; 00033 00038 virtual SI_Error Synchronize(); 00039 00040 private: 00041 00042 void *m_pReserved; // reserved for future extension 00043 }; 00044 00045 #endif //_COLLADAINSTANCE_H