This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/template/singleton.h
2019-12-21 21:55:53 +08:00

26 lines
382 B
C++

#ifndef SINGLETON_H
#define SINGLETON_H
#include <QDebug>
class Singleton
{
private:
static Singleton *local_instance;
Singleton() {
qDebug() << "constructor";
}
~Singleton() {
qDebug() << "destructor";
}
public:
static Singleton *getInstance() {
static Singleton locla_s;
return &locla_s;
}
};
#endif // SINGLETON_H