18 lines
206 B
C++
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 |