Files
fault-finder/StreamManager.hpp
Grant Terris c49c8f6e33 Initial Commit
2019-11-09 15:44:38 -08:00

18 lines
206 B
C++

#ifndef STREAM_MANAGER_H
#define STREAM_MANAGER_H
#include <QObject>
class StreamManager : public QObject
{
Q_OBJECT;
public:
StreamManager(QObject *parent);
void Process();
};
#endif