I have a class called Neuron that has a function called step() that I want to call one of two functions depending on which I have chosen in another file.
EIF and HH are extern ints either 1 or 0.
When I compile this code I get error: Expected primary expression before 'double' on both the EIFstep and the HHstep line in the step() function definition. I'm not sure what's wrong because both functions are void, so shouldn't need anything besides a simple function call.