FactDev  0.1
pointers.h
1 #ifndef POINTERS_H
2 #define POINTERS_H
3 
4 #include <QObject>
5 
6 namespace Utils {
11 class pointers
12 {
13 public:
19  static void deleteIfNotNull(QObject* p);
20 };
21 }
22 #endif // POINTERS_H
The pointers class.
Definition: pointers.h:11
static void deleteIfNotNull(QObject *p)
pointers::deleteIfNotNull Remove to the memory the object p if it is not null
Definition: pointers.cpp:5