|
|
#ifndef _LYRICS_H_ #define _LYRICS_H_ #include "ornament.h" class Note; class Lyrics : public Ornament { private: const char * _text; public: Lyrics(); Lyrics(Note*,char*); Lyrics(const Lyrics&); const char * get() const { return _text; } void set(const char*); virtual ostream & print(int,ostream&) const; virtual void flush(const char*) const; virtual Element * copy() const; static Element * load(char*,ifstream*&,Element*); }; #endif
Generated by: wuerthne on clouseau on Fri Sep 21 19:20:46 2001, using kdoc 2.0a53. |