Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saber2pr/observer
https://github.com/saber2pr/observer
cpp observer
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/saber2pr/observer
- Owner: Saber2pr
- Created: 2018-12-08T13:10:45.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-09T15:40:16.000Z (about 6 years ago)
- Last Synced: 2024-11-09T00:34:41.490Z (about 2 months ago)
- Topics: cpp, observer
- Language: C++
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Observer
> Observer```cpp
unsubscribe subscribe(Listener listener){
this->_Listeners.push_back(listener);
int index = this->_Listeners.size() - 1;
return [=](){
this->_Listeners[index] = [](S){};
};
}
```