00001 /******************************************************************************\ 00002 * 00003 * File: AnimatableVector.h 00004 * Creation date: Feb 5, 2002 00005 * Purpose: Declaration of AnimatableVector class 00006 * 00007 * Modifications: 00008 * Feb 5, 2002, Created - dolaflam 00009 * Copyright 2002, XXXXX 00010 * All rights are reserved. Reproduction in whole or part is prohibited 00011 * without the written consent of the copyright owner. 00012 * 00013 \******************************************************************************/ 00014 00015 #ifndef _ANIMATABLEVECTOR_H 00016 #define _ANIMATABLEVECTOR_H 00017 00018 #include <SIBCUtil.h> 00019 00020 class XSIEXPORT CSLAnimatableVector 00021 { 00022 public: 00023 CSLAnimatableVector() {}; 00024 virtual ~CSLAnimatableVector() {}; 00025 00026 virtual SI_Error Synchronize() = 0; 00027 00028 }; 00029 00030 #endif