hi every one im working with some exersies which include inheretence
every thing is fine except that the compiler dose not recognize the base clase
it says Error Cannot open include file: 'pointType.h': No such file or directory
here is part of the code
# include "pointType.h"
# ifndef circle_H
# define circle_H
class circle : public pointType
{
public:
//constructor
circle(double r=0.0,int x=0,int y=0);
void setRadius(double);
double getRadius()const;
double area()const;
double circumference()const;
void printR();
protected:
double radius;
}
#endif
can any one help me!