Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jluispcardenas/delegates

implementation of delegates metodology in C++
https://github.com/jluispcardenas/delegates

cprogramming delegates

Last synced: about 2 months ago
JSON representation

implementation of delegates metodology in C++

Awesome Lists containing this project

README

        

# Delegates

Implementation of *delegates* in C ++

Use
```
int sum(int a, int b) {
return a + b;
}

delegate mDelegate;

mDelegate.bind(suma);

int result = mDelegate(2, 3);

```
## Licence
This project is licensed under the MIT License