COLLADAMixer.h

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 _COLLADAMIXER_H
00013 #define _COLLADAMIXER_H
00014 
00015 #include "Mixer.h"
00016 
00017 // Forward declaration
00018 class CSLAction;
00019 class CSLTrack;
00020 
00035 class XSIEXPORT CSLCOLLADAMixer
00036     : public CSLMixer
00037 {
00038 public:
00044     CSLCOLLADAMixer(CSLScene* in_pScene, CSLModel *in_pModel, CdotXSITemplate* in_pTemplate);
00045     virtual ~CSLCOLLADAMixer();
00046 
00050     virtual CSLAction* AddAction();
00051 private:
00052     
00053     SI_Void *m_pReserved;
00054 
00055 };
00056 
00057 
00058 #endif _COLLADAMIXER_H