base class is not recognized !! Programming Software Development by moonL!ght hi every one im working with some exersies which include inheretence every thing is fine except that the compiler dose not … Re: C++ inheritence Programming Software Development by scarface3288 … temp file I was wrong. I was suppose to use inheretence to populate the members in the file that.h file… Re: help me out in oo in c++ Programming Software Development by shashanderson how to convert this program in object oreint ???and how to use stuctures in it.???????......how i can do inheretence in this program ???????????.........how to make the user in put case senstive in c++???????????? Re: help me out in oo in c++ Programming Software Development by csurfer … how to use stuctures in it.???????......how i can do inheretence in this program ???????????.........how to make the user in put… Re: help me out in oo in c++ Programming Software Development by shashanderson i can now read and write data but how to do search and delete record in it ............????????????...............i am anable to convert it in class and do inheretence ................????????? Re: oo in c++ Programming Software Development by shashanderson how to convert it in class and do inheretence ????? how to do search and delete a record ??????????????? Re: Classes Programming Software Development by phfilly If you make any function within that class pure virtual then you can't create a object of that class. If I understand you correctly or make the inheretence private like Ancient Dragon said. Problem in Inheretence Programming Software Development by aman rathi The below code is showing error i checked lots of time didn't find any error please help me. [CODE] class emp{ int id,sal; String name; emp(int id,int sal,String name) { this.id=id; this.sal=sal; this.name=name; } void show() { System.out.println("Name: "+name); System.out.println("Salary: "+sal); System.out.println("… Re: Problem in Inheretence Programming Software Development by Muralidharan.E [CODE]manager(int id,int sal,String name,int bonus){ //Here defaultly emp() default constructor will be called. this.id=id; this.sal=sal; this.name=name; this.bonus=bonus; }[/CODE] emp() default constructor will be called in the above code if you didnt call any base class constructor. So either pass your arguments by using super(id,sal,… Re: Problem in Inheretence Programming Software Development by aman rathi thanks :-) Re: base class is not recognized !! Programming Software Development by Unimportant Is the file in the same directory as the .h you are editing? Re: base class is not recognized !! Programming Software Development by moonL!ght this was the problem thanks alot. Re: base class is not recognized !! Programming Software Development by chiwawa10 This has got to do with your header location in the physical directory. Check that it is in the same directory as your CPP file. Otherwise, you may specify the relative path of the file in your include statement.