I drew a little graph in paint that explains my problem:

But it doesn't seem to show up when I use the <img> tag after posting?

Here is a direct link: http://i44.tinypic.com/103gcbk.jpg

link|improve this question
As you can see, code is simpler than pictures. Pare your code down to the absolute fewest lines that show your problem. Post those. Pictures aren't as accurate as a slimmed-down-to-the-essential-problem code snippets. – S.Lott Dec 27 '08 at 15:09
That picture tells nothing. – Arafangion Oct 27 '11 at 22:56
feedback

4 Answers

up vote 3 down vote accepted

You need to instantiate the database outside of main(), otherwise you will just declare a local variable shadowing the global one.

GameServer.cpp:

#include GameSocket.h
Database db(1, 2, 3);
int main() {
   //whatever
}
link|improve this answer
Thanks, this was indeed a stupid mistake of mine :) – Daniel Dec 27 '08 at 14:59
Minor point, but it doesn't shadow a global, because there is no global - just a reference to one that doesn't exist. – Paul Beckingham Dec 27 '08 at 16:49
feedback

The problem is the scope of the declaration of db. The code:

extern Database db;

really means "db is declared globally somewhere, just not here". The code then does not go ahead and actually declare it globally, but locally inside main(), which is not visible outside of main(). The code should look like this, in order to solve your linkage problem:

file1.c

Database db;
int main ()
{
  ...
}

file2.c

extern Database db;
void some_function ()
{
  ...
}
link|improve this answer
feedback

The extern is being applied to all the CPP (and resulting OBJ) files, so none of them ever actually instantiate the DB.

Here's one way around this. In Database.h, change the extern Database db to:

#ifdef INSTANTIATE_DB
Database db;
#else
extern Database db;
#endif

and then in one of your CPP files (Database.cpp would be good, if you have one) add a #define INSTANTIATE_DB before the #include "Database.h".

link|improve this answer
You can do it that way, but it isn't particularly clean. – Jonathan Leffler Dec 27 '08 at 15:33
feedback

But it doesn't seem to be showing up when I use the img tag after posting?

Here is a direct link: http://i44.tinypic.com/103gcbk.jpg

link|improve this answer
Please remove this - I've edited the material into the question. – Jonathan Leffler Dec 27 '08 at 15:48
feedback

Your Answer

 
or
required, but never shown