vote up 0 vote down star

i have written the body of the function in the header file and so do not have a source file. when i tried running my project in visual studio .. i got an

error: Cannot open source file: No such file or directory.

How do I make visual studio understand that the definitions of the function are within the header itself?

flag

You do have at least one source file, right? main must be in a source file. – rlbond Oct 6 at 19:21

1 Answer

vote up 2 vote down check

You need to create a dummy source.cpp file just containing #include "source.h"

edit - I just tried this - Visual studio will let you do.

test.cpp

#include "test.h"

where test.h

#include "stdio.h"
int main()
{
   printf("hello world");
   return 0;
}

Interesting - but pointless !

link|flag
You do not need to do this. You can inline functions simply by creating them within the header file. There is something else fundamentally wrong here. – wheaties Oct 6 at 19:15
1  
I'm guessing that this is the only file in his project. VS wont build a project with only headers. – mgb Oct 6 at 19:28
You can put all sorts of things in the header file, but unless there's at least one source file, Visual Studio won't compile anything. (BTW, functions aren't inlined by being in the header file, they're automatically inlined by being in the class definition.) – David Thornley Oct 6 at 19:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.