Skip to content

Instantly share code, notes, and snippets.

@ntietz
Created July 20, 2011 22:52
Show Gist options
  • Save ntietz/1096128 to your computer and use it in GitHub Desktop.
Save ntietz/1096128 to your computer and use it in GitHub Desktop.
Example of a Functor
class PrintNTimes {
public:
PrintN(int x) {
times = x;
}
void operator()(string foo) {
for (int index = 0; index < times; index++) {
cout << foo;
}
}
private:
int times;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment