| Author |
not able to call my header file
|
Punit Jain
Ranch Hand
Joined: Aug 20, 2011
Posts: 908
|
|
hii i m not able to call my header file MYSTACK.H
here is my code:
mystack.h
Here i m calling it...
Both of my files are in same directory..
i m getting error:
'Cstack' undeclared (first use this function)..
and few more..
|
 |
Stephan van Hulst
Bartender
Joined: Sep 20, 2010
Posts: 3065
|
|
|
Well, you have nothing called 'Cstack' declared in your header file.
|
 |
Punit Jain
Ranch Hand
Joined: Aug 20, 2011
Posts: 908
|
|
ahhh okay..
thanks..
and i m still getting one error:
[Linker error] undefined reference to `CStack::~CStack()'
|
 |
Anand Hariharan
Rancher
Joined: Aug 22, 2006
Posts: 252
|
|
Your class declares a destructor but does not define it.
Remove or comment line 22 in your header file. Or replace it with
|
"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- Antoine de Saint-Exupery
|
 |
 |
|
|
subject: not able to call my header file
|
|
|