You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Note:** The GitHub account for this project was renamed from `DeveloperPaul123` to `ptsouchlos`. Repository ownership and history are unchanged.
29
+
28
30
## Overview
29
31
30
32
`eventbus` is a simple, header only C++17 event bus library that doesn't require you to inherit from any sort of `event` class. The library implements the "Mediator" pattern. This pattern is useful when you want components to communicate to each other without necessarily "knowing" about each other. Effectively, this is a thread safe event dispatcher with a list of callbacks.
@@ -119,7 +121,7 @@ dp::event_bus evt_bus;
119
121
evt_bus.fire_event(evt); // all connect handler for the given event type will be fired.
120
122
````
121
123
122
-
A complete example can be seen in the [demo](https://github.com/DeveloperPaul123/eventbus/tree/develop/demo) project.
124
+
A complete example can be seen in the [demo](https://github.com/ptsouchlos/eventbus/tree/develop/demo) project.
123
125
124
126
## Integration
125
127
@@ -142,7 +144,7 @@ Alternatively, you can use something like [CPM](https://github.com/TheLartians/C
142
144
````cmake
143
145
CPMAddPackage(
144
146
NAME eventbus
145
-
GITHUB_REPOSITORY DeveloperPaul123/eventbus
147
+
GITHUB_REPOSITORY ptsouchlos/eventbus
146
148
GIT_TAG #053902d63de5529ee65d965f8b1fb0851eceed24 change this to latest commit/release tag
147
149
)
148
150
````
@@ -162,17 +164,17 @@ The following use cases are not supported:
162
164
163
165
## Contributing
164
166
165
-
If you find an issue with this library please file an [issue](https://github.com/DeveloperPaul123/eventbus/issues). Pull requests are also welcome! Please see the [contribution guidelines](CONTRIBUTING.md) for more information.
167
+
If you find an issue with this library please file an [issue](https://github.com/ptsouchlos/eventbus/issues). Pull requests are also welcome! Please see the [contribution guidelines](CONTRIBUTING.md) for more information.
166
168
167
169
## License
168
170
169
171
The project is licensed under the Apache License Version 2.0. See [LICENSE](LICENSE) for more details.
0 commit comments