Canorus  0.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
/home/iurt/rpm/BUILD/canorus-0.7.R1002/src/core/text.h
Go to the documentation of this file.
00001 
00008 #ifndef TEXT_H_
00009 #define TEXT_H_
00010 
00011 #include <QString>
00012 #include "core/mark.h"
00013 
00014 class CAText : public CAMark {
00015 public:
00016         CAText( const QString text, CAPlayable *m );
00017         virtual ~CAText();
00018         
00019         inline const QString text() { return _text; }
00020         inline void setText( const QString t ) { _text = t; }
00021         
00022         CAText* clone(CAMusElement* elt=0);
00023         int compare(CAMusElement *elt);
00024 
00025 private:
00026         QString _text;
00027 };
00028 
00029 #endif /* TEXT_H_ */