Quote:
Originally Posted by euhlmann
First, make sure you understand visibility. Here's a stackoverflow question I found: http://stackoverflow.com/questions/8...ed-inheritance
You simply need to make the constructor public
Code:
class Robot: public IterativeRobot
{
private:
// some stuff
public:
Robot() // etc
// ...
}
|
I just tried that but it's still throwing the error. I think it's a glitch with eclipse because no matter how much i move around the code it always appears on line 24.