Click here to Skip to main content
15,886,541 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When I am compiling the program it is working.
but i can't run it( linking error's).the error's are of type
Error 15 error LNK2019: unresolved external symbol "public: virtual class OFCondition __thiscall DcmFileFormat::saveFile(char const *,enum E_TransferSyntax,enum E_EncodingType,enum E_GrpLenEncoding,enum E_PaddingEncoding,unsigned int,unsigned int,bool)" (?saveFile@DcmFileFormat@@UAE?AVOFCondition@@PBDW4E_TransferSyntax@@W4E_EncodingType@@W4E_GrpLenEncoding@@W4E_PaddingEncoding@@II_N@Z) referenced in function "public: bool __thiscall CxImageDCM::SaveAsDCM(char const *)" (?SaveAsDCM@CxImageDCM@@QAE_NPBD@Z) xImageDCM.obj DCMConverter



Please help me.



I have included all the library files.
the function shown in the error is in a library called dcmdata.lib.
iam sure tht i have included the library
Posted
Updated 7-Oct-10 20:20pm
v4
Comments
Richard MacCutchan 6-Oct-10 6:47am    
"unresolved external symbol" means the linker is missing a lib file that defines the relevant entry point. Check your project settings and make sure you have included all the necessary files.

1 solution

The error is due to a missing symbol, in your case the method DcmFileFormat::saveFile.
From the signature, I see that the method is virtual: if you have written the class DcmFileFormat, probably you forgot to implement that method, which is declared as pure virtual in the base class.
 
Share this answer
 
Comments
sherin_ 8-Oct-10 1:07am    
Thanks a lot. i forgot to add the required header files to the project

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900