Error : Help please

i am getting this error

error LNK2019: unresolved external symbol "public: __thiscall selsort::~selsort(void)" (??1selsort@@QAE@XZ) referenced in function __unwindfunclet$??0sorting@@QAE@XZ$0 C:\Users\user\Documents\Visual Studio 2010\Projects\Sorting Algos\Sorting Algos\mymain.obj


i hv a class named linkedlist, subclass selsort, and sub-sub class sorting.
can anyone please tell what does this error means??? and how can i resolve it??
You declared the destructor for selsort but didn't define it any place where the linker could find it.

Define it in a place the linker can find it (ie. in a file that's included in your project.)
yeah i figured out that later but it was not coz of dat. there was a semi colon missing in code as well.
but thanx anyway. :)
Topic archived. No new replies allowed.