Having considered [http://www.research.ibm.com/designpatterns/pubs/ph-jun96.txt]
I propose singleton implementation.

I had attached "singleton.hpp" to this letter.

Below is the test program:

#include <stdio.h>
#include <singleton.hpp>

class A : public boost::Singleton<A>
{
ššš //
ššš // Only Singleton class can create and delete us!
ššš //
ššš SINGLETON_IS_MY_FRIEND;
public:
ššš void foo(){ printf("foo!\n"); }
ššš A(){ printf("A()\n"); }
ššš ~A(){ printf("~A()\n"); }
};

void main()
{
ššš // It is not compiled:
ššš //A a = A::Instance();
ššš // That is exactly as it should be used:
ššš A::Instance().foo();
}

Test program outputs:
A()
foo!
~A()

Does Boost community think that boost::Singleton is convenient solution?