Primitive.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 _PRIMITIVE_H
00013 #define _PRIMITIVE_H
00014 
00015 #include "Template.h"
00016 
00018 class XSIEXPORT CSLPrimitive
00019     : public CSLTemplate
00020 {
00021 public:
00022 
00025     virtual ~CSLPrimitive();
00026 
00031     virtual SI_Bool ValidateParent(CSLModel *in_pNewParent);
00032 
00033 protected:
00034 
00041     CSLPrimitive(CSLScene* in_pScene, CSLModel *in_pModel, CdotXSITemplate* in_pTemplate);
00042 };
00043 
00044 #endif