https://github.com/saber2pr/observer
https://github.com/saber2pr/observer
cpp observer
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/saber2pr/observer
- Owner: Saber2pr
- Created: 2018-12-08T13:10:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-09T15:40:16.000Z (over 6 years ago)
- Last Synced: 2025-01-02T14:44:36.031Z (6 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){};
};
}
```