Skip to content

Instantly share code, notes, and snippets.

@FinchPowers
Created March 20, 2013 14:06
Show Gist options
  • Save FinchPowers/5204908 to your computer and use it in GitHub Desktop.
Save FinchPowers/5204908 to your computer and use it in GitHub Desktop.
behaviour_domain_py.cc opt example
// script type
void save(BehaviourDomain & dom, const string & filename, ssize_t max)
{
dom.save(filename, max);
}
// object type
void (BehaviourDomain::*save3)(const string &, ssize_t) = &BehaviourDomain::save;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment