Created
March 20, 2013 14:06
-
-
Save FinchPowers/5204908 to your computer and use it in GitHub Desktop.
behaviour_domain_py.cc opt example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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