1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef __CCB_SEQUENCE_PROPERTY_H__
- #define __CCB_SEQUENCE_PROPERTY_H__
- #include "base/CCRef.h"
- #include "base/CCVector.h"
- #include "editor-support/cocosbuilder/CCBKeyframe.h"
- namespace cocosbuilder {
- class CC_DLL CCBSequenceProperty : public cocos2d::Ref
- {
- public:
- /**
- * @js ctor
- */
- CCBSequenceProperty();
- /**
- * @js NA
- * @lua NA
- */
- ~CCBSequenceProperty();
-
- virtual bool init();
-
- const char* getName();
- void setName(const char* pName);
-
- int getType();
- void setType(int type);
-
- cocos2d::Vector<CCBKeyframe*>& getKeyframes();
- private:
- std::string _name;
- int _type;
- cocos2d::Vector<CCBKeyframe*> _keyframes;
- };
- }
- #endif // __CCB_SEQUENCE_PROPERTY_H__
|