Changeset c8cb0d for src/Actions/ActionQueue.cpp
- Timestamp:
- Dec 26, 2025, 9:40:14 PM (6 weeks ago)
- Branches:
- Candidate_v1.7.1, stable
- Children:
- 033646
- Parents:
- f2d5ce
- git-author:
- Frederik Heber <frederik.heber@…> (12/10/25 16:15:28)
- git-committer:
- Frederik Heber <frederik.heber@…> (12/26/25 21:40:14)
- File:
-
- 1 edited
-
src/Actions/ActionQueue.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ActionQueue.cpp
rf2d5ce rc8cb0d 62 62 63 63 ActionQueue::ActionQueue() : 64 Observable("ActionQueue" ),64 Observable("ActionQueue", NotificationType_MAX), 65 65 AR(new ActionRegistry()), 66 66 history(new ActionHistory), … … 72 72 #endif 73 73 dryrun_flag(false) 74 { 75 // channels of observable 76 Channels *OurChannel = new Channels; 77 Observable::insertNotificationChannel( std::make_pair(static_cast<Observable *>(this), OurChannel) ); 78 // add instance for each notification type 79 for (size_t type = 0; type < NotificationType_MAX; ++type) 80 OurChannel->addChannel(type); 81 } 74 {} 82 75 83 76 ActionQueue::~ActionQueue()
Note:
See TracChangeset
for help on using the changeset viewer.
