Forum: C++ Oct 30th, 2006 |
| Replies: 4 Views: 15,466 :p Hi Dear
you try with this code
#include <iostream>
using namespace std;
class Singleton
{
private: |
Forum: C++ Oct 27th, 2006 |
| Replies: 6 Views: 6,968 Hi This is Singleton class program, please let me know any changes required in this code...............
#include <iostream>
using namespace std;
class Singleton
{
private:
static bool... |
Forum: C++ Oct 23rd, 2006 |
| Replies: 4 Views: 15,466 #include <iostream>
using namespace std ;
class Singleton
{
public:
// Implement the logic here to instantiate the class for the first time by validating the
// member pointer. If member... |