They both have the same category, so they can share the same code in their base.
26 lines
373 B
C++
26 lines
373 B
C++
#include "audio.h"
|
|
|
|
AudioInput::AudioInput()
|
|
{
|
|
}
|
|
|
|
Node *AudioInput::copy() const
|
|
{
|
|
return new AudioInput();
|
|
}
|
|
|
|
QString AudioInput::Name() const
|
|
{
|
|
return tr("Audio Input");
|
|
}
|
|
|
|
QString AudioInput::id() const
|
|
{
|
|
return QStringLiteral("org.olivevideoeditor.Olive.audioinput");
|
|
}
|
|
|
|
QString AudioInput::Description() const
|
|
{
|
|
return tr("Import an audio footage stream.");
|
|
}
|