They both have the same category, so they can share the same code in their base.
21 lines
335 B
C++
21 lines
335 B
C++
#ifndef AUDIOINPUT_H
|
|
#define AUDIOINPUT_H
|
|
|
|
#include "../media.h"
|
|
|
|
class AudioInput : public MediaInput
|
|
{
|
|
public:
|
|
AudioInput();
|
|
|
|
virtual Node* copy() const override;
|
|
|
|
virtual QString Name() const override;
|
|
virtual QString id() const override;
|
|
virtual QString Description() const override;
|
|
|
|
private:
|
|
};
|
|
|
|
#endif // AUDIOINPUT_H
|