GstPipelineStudio/src/PipelineIE.h
Stéphane Cerveau 2d75a32dd0 Code cleanup
Use GNU formatter from Eclipse.
2017-05-31 21:50:51 +02:00

17 lines
381 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