Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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++
- Host: GitHub
- URL: https://github.com/jluispcardenas/delegates
- Owner: jluispcardenas
- Created: 2013-06-27T19:49:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2020-04-25T22:35:33.000Z (over 4 years ago)
- Last Synced: 2023-08-01T12:15:38.047Z (over 1 year ago)
- Topics: cprogramming, delegates
- Language: C++
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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