9 using ProcessResult = bool;
14 : processor_name(processor) { }
16 virtual ProcessResult process_events(std::shared_ptr<AlarmyNote> note) = 0;
18 bool getLeave_session()
const;
19 void setLeave_session(
bool newLeave_session);
21 bool getEnabled()
const;
22 void setEnabled(
bool newEnabled);
24 QString getProcessor_name()
const;
25 void setProcessor_name(
const QString& newProcessor_name);
28 bool leave_session {
false };
29 bool enabled {
true };
31 QString processor_name {
"Unamed Processor" };