root/week1oplossing/functionpointer.h
Show/hide line numbers
#pragma once #include "Week1Oplossing.h" typedef void (Week1Oplossing::*fpfunction)(int); class functionpointertest { public: functionpointertest(Week1Oplossing *parentptr); ~functionpointertest(); void setfunction(fpfunction f); private: fpfunction test; Week1Oplossing *mParentPtr; }; |
View as a web page
Download