Canorus  0.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
bookmark.h
Go to the documentation of this file.
1 
8 #ifndef BOOKMARK_H_
9 #define BOOKMARK_H_
10 
11 #include <QString>
12 #include "core/mark.h"
13 
14 class CABookMark: public CAMark {
15 public:
16  CABookMark( const QString text, CAMusElement *m );
17  virtual ~CABookMark();
18 
19  inline const QString text() { return _text; }
20  inline void setText( const QString t ) { _text = t; }
21 
22  CABookMark* clone(CAMusElement* elt=0);
23  int compare(CAMusElement *elt);
24 
25 private:
26  QString _text;
27 };
28 
29 #endif /* BOOKMARK_H_ */