CCIMXDesktop
 
Loading...
Searching...
No Matches
BackLightControllerSingleton.h
1#ifndef BACKLIGHTCONTROLLERSINGLETON_H
2#define BACKLIGHTCONTROLLERSINGLETON_H
3#include <QtClassHelperMacros>
4#include <memory>
6
8public:
9 static std::shared_ptr<BacklightController> instance();
10
11private:
14 Q_DISABLE_COPY_MOVE(BackLightControllerSingleton);
15
16 static std::shared_ptr<BacklightController> m_instance;
17};
18
19#endif // BACKLIGHTCONTROLLERSINGLETON_H
Definition BackLightControllerSingleton.h:7
backlighty controller
Definition BacklightController.h:10