XSIVertexList.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 _XSIVERTEXLIST_H
00013 #define _XSIVERTEXLIST_H
00014 
00015 #include "XSISubComponentList.h"
00016 
00017 
00023 class XSIEXPORT CSLXSIVertexList
00024     : public CSLXSISubComponentList
00025 {
00026 public:
00033     CSLXSIVertexList(CSLScene *in_pScene, CSLModel *in_pModel, CdotXSITemplate *in_pTemplate);
00034 
00037     virtual ~CSLXSIVertexList();
00038 
00042     virtual ETemplateType           Type() { return XSI_VERTEX_LIST; }
00043 
00047     virtual SI_Error Synchronize();
00048 
00049 private:
00050 
00051     void *m_pReserved;  // reserved for future extension
00052 };
00053 
00054 #endif