Canorus 0.0
notecheckererror.h
Go to the documentation of this file.
1
8#ifndef NOTECHECKERERROR_H_
9#define NOTECHECKERERROR_H_
10
11class CAMusElement;
12
14public:
15 CANoteCheckerError(CAMusElement *targetElement, QString message);
17
18private:
20 QString _message;
21};
22#endif /* NOTECHECKERERROR_H_ */
An abstract class which represents every music element in the score.
Definition: muselement.h:21
Class representing the error produced by the note checker.
Definition: notecheckererror.h:13
~CANoteCheckerError()
Definition: notecheckererror.cpp:28
CANoteCheckerError(CAMusElement *targetElement, QString message)
Definition: notecheckererror.cpp:23
QString _message
Definition: notecheckererror.h:20
CAMusElement * _targetElement
Definition: notecheckererror.h:19