rhubarb-lip-sync/src/exporters/TsvExporter.h

10 lines
276 B
C++

#pragma once
#include "Exporter.h"
class TsvExporter : public Exporter {
public:
void exportAnimation(const boost::filesystem::path& inputFilePath, const JoiningContinuousTimeline<Shape>& animation, const ShapeSet& targetShapeSet, std::ostream& outputStream) override;
};