root/week1oplossing/functionpointer.h

Author: machiel.sleeuwaert Revision: 10 («Previous)
Date: over 1 year ago (Nov 11 16:35 2008 UTC)
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;
};