GstPipelineStudio/src/PipelineIE.h
dabrain34 4c37518de7 Add a menu entry clear
Allow to clear the graph and start over.
2016-12-11 16:08:30 +01:00

17 lines
378 B
C++

#ifndef PIPELINE_IMPORT_EXPORT_H_
#define PIPELINE_IMPORT_EXPORT_H_
#include <QString>
#include <QSharedPointer>
#include "GraphManager.h"
namespace PipelineIE
{
bool Export(QSharedPointer<GraphManager> pgraph, const QString &fileName);
bool Import(QSharedPointer<GraphManager> pgraph, const QString &fileName);
bool Clear(QSharedPointer<GraphManager> pgraph);
};
#endif