00001
00002
00003
00004
00005
00006
00007
00008
00010
00012
00018 #ifndef _seDRMAnimationBehaviour_h
00019 #define _seDRMAnimationBehaviour_h
00020
00021 #include "seDRMBase.h"
00022
00023 namespace sedris {
00024
00030 class seDRMAnimationBehaviour : public seDRMBase
00031 {
00032 public:
00033
00035 seDRMAnimationBehaviour() {}
00036
00038 seDRMAnimationBehaviour( const seObject &other ) : seDRMBase(other) {}
00039
00041 SE_Long_Float get_period() { DRMBASE_RET_FIELDS(Animation_Behaviour, period); }
00042
00044 void set_period( SE_Long_Float val ) { DRMBASE_SET_FIELDS(Animation_Behaviour, period, val); }
00045
00047 SE_Short_Integer_Unsigned get_count() { DRMBASE_RET_FIELDS(Animation_Behaviour, count); }
00048
00050 void set_count( SE_Short_Integer_Unsigned val ) { DRMBASE_SET_FIELDS(Animation_Behaviour, count, val); }
00051
00053 SE_Boolean get_forward_sequence_mode() { DRMBASE_RET_FIELDS(Animation_Behaviour, forward_sequence_mode); }
00054
00056 void set_forward_sequence_mode( SE_Boolean val ) { DRMBASE_SET_FIELDS(Animation_Behaviour, forward_sequence_mode, val); }
00057
00059 SE_Short_Integer_Positive get_beginning_frame() { DRMBASE_RET_FIELDS(Animation_Behaviour, beginning_frame); }
00060
00062 void set_beginning_frame( SE_Short_Integer_Positive val ) { DRMBASE_SET_FIELDS(Animation_Behaviour, beginning_frame, val); }
00063
00065 SE_Short_Integer_Positive get_ending_frame() { DRMBASE_RET_FIELDS(Animation_Behaviour, ending_frame); }
00066
00068 void set_ending_frame( SE_Short_Integer_Positive val ) { DRMBASE_SET_FIELDS(Animation_Behaviour, ending_frame, val); }
00069
00071 SE_Boolean get_random_beginning_frame() { DRMBASE_RET_FIELDS(Animation_Behaviour, random_beginning_frame); }
00072
00074 void set_random_beginning_frame( SE_Boolean val ) { DRMBASE_SET_FIELDS(Animation_Behaviour, random_beginning_frame, val); }
00075
00077 virtual SE_DRM_Class getClassType() const { return SE_DRM_CLS_ANIMATION_BEHAVIOUR; }
00078
00079 };
00080
00081 }
00082
00083 #endif // _seDRMAnimationBehaviour_h