Skip to content

Instantly share code, notes, and snippets.

@mlcollard
Created January 6, 2023 15:10
Show Gist options
  • Save mlcollard/04116b8786929f0a884f87c1f5b0777e to your computer and use it in GitHub Desktop.
Save mlcollard/04116b8786929f0a884f87c1f5b0777e to your computer and use it in GitHub Desktop.
class MethodCount {
public:
int count();
private:
CPPParser parser;
};
int main() {
MethodCount counter;
counter.count();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment