00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef _IK_H
00013 #define _IK_H
00014
00015 #include "Primitive.h"
00016
00017
00018 class CSLIKRoot;
00019
00020
00022 class XSIEXPORT CSLIK
00023 : public CSLPrimitive
00024 {
00025 public:
00026
00029 virtual ~CSLIK();
00030
00034 CSLModel* GetRoot();
00035
00040 CSLModel* ConnectRoot(CSLModel* in_pNewRoot);
00041
00042 protected:
00043 CSLIK(CSLScene* in_pScene, CSLModel *in_pModel, CdotXSITemplate* in_pTemplate, CSLModel* in_pRoot);
00044
00045 private:
00046 CSLModel* m_pRoot;
00047
00048 void *m_pReserved;
00049 };
00050
00051 #endif