00001 00008 #ifndef BOOKMARK_H_ 00009 #define BOOKMARK_H_ 00010 00011 #include <QString> 00012 #include "core/mark.h" 00013 00014 class CABookMark: public CAMark { 00015 public: 00016 CABookMark( const QString text, CAMusElement *m ); 00017 virtual ~CABookMark(); 00018 00019 inline const QString text() { return _text; } 00020 inline void setText( const QString t ) { _text = t; } 00021 00022 CAMusElement* clone(); 00023 int compare(CAMusElement *elt); 00024 00025 private: 00026 QString _text; 00027 }; 00028 00029 #endif /* BOOKMARK_H_ */
1.5.3