A
Agent Mulder
I have problems moving my project
into a seperate namespace.
Namespace introduces its own level
of bugs.
#include <iostream.h>
class Fury{};//comment this out and it compiles
namespace Green
{
class Fury{};//or comment this out and it compiles
};
using namespace Green;//or comment this out and it compiles
int main(int argc,char**argv)
{
Fury fury;//or comment this out and it compiles
return 0;
}
-X
into a seperate namespace.
Namespace introduces its own level
of bugs.
#include <iostream.h>
class Fury{};//comment this out and it compiles
namespace Green
{
class Fury{};//or comment this out and it compiles
};
using namespace Green;//or comment this out and it compiles
int main(int argc,char**argv)
{
Fury fury;//or comment this out and it compiles
return 0;
}
-X