Split FaultFinder into Own Object
This commit is contained in:
27
FaultFinder.hpp
Normal file
27
FaultFinder.hpp
Normal file
@@ -0,0 +1,27 @@
|
||||
#ifndef FAULT_FINDER_H
|
||||
#define FAULT_FINDER_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
#include "StreamManager.hpp"
|
||||
#include "ImageManager.hpp"
|
||||
#include "FaultManager.hpp"
|
||||
#include "ConfigManager.hpp"
|
||||
|
||||
class FaultFinder : public QObject
|
||||
{
|
||||
Q_OBJECT;
|
||||
|
||||
public:
|
||||
FaultFinder(QObject *parent);
|
||||
virtual ~FaultFinder();
|
||||
|
||||
FaultManager *fault_mgr;
|
||||
ImageManager *image_mgr;
|
||||
ConfigManager *config_mgr;
|
||||
StreamManager *stream_mgr;
|
||||
|
||||
bool test_mode = false;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user