Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/saber2pr/observer


https://github.com/saber2pr/observer

cpp observer

Last synced: 3 days ago
JSON representation

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){};
};
}
```