00001 #ifndef TIMEMUSIC_H 00002 #define TIMEMUSIC_H 00003 #include "Attribute.h" 00011 class TimeMusic:public AttributeMusic 00012 { 00013 int beatType; 00014 int beats; 00015 public: 00016 int getBeats(); 00017 int getBeatType(); 00018 TimeMusic (int beats, int beatype); 00019 QString getSymbolName(); 00020 QString getNature(); 00021 int getTimeDuration(); 00022 void print(); 00023 QString toString(); 00024 }; 00025 #endif
1.3.6