Hello,
I want to extend the standard Servo. So I define a new class EServo. When I try to compile it, I get this ]

errormsg:
EServo\EServo.cpp.o: In function `EServo':
C:\arduino\arduino-1.0.1\libraries\EServo/EServo.cpp:12: undefined reference to `Servo::Servo()'
Where did it all go wrong

my H-file (EServo.h) looks like this:
#ifndef ESERVO_H
#define ESERVO_H
#include "../Servo/Servo.h"
class EServo : public Servo
{
public:
// construction
EServo(unsigned int);
void update(void);
private:
unsigned int myPortNumber;
};
#endif
and the CPP-file (EServo.cpp) looks like this:
#include <Arduino.h>
#include "EServo.h"
EServo::EServo(unsigned int portNumber) :
Servo(), //line 12: ERROR: undefined reference to `Servo::Servo()
myPortNumber(portNumber)
{
//do something
}
void EServo::update(void)
{
//update
}
Can somebody please HELP me???