mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
24 lines
589 B
C++
24 lines
589 B
C++
#ifndef WRITER_H
|
|
#define WRITER_H
|
|
|
|
#include "flags.h"
|
|
|
|
extern FlagGroup writerFlags;
|
|
|
|
class Fluxmap;
|
|
class AbstractEncoder;
|
|
class Geometry;
|
|
|
|
extern void setWriterDefaultDest(const std::string& dest);
|
|
|
|
extern void writeTracks(const std::function<std::unique_ptr<Fluxmap>(int track, int side)> producer);
|
|
|
|
extern void fillBitmapTo(std::vector<bool>& bitmap,
|
|
unsigned& cursor, unsigned terminateAt,
|
|
const std::vector<bool>& pattern);
|
|
|
|
extern void writeDiskCommand(
|
|
AbstractEncoder& encoder, const Geometry& geometry, const std::string& inputFilename);
|
|
|
|
#endif
|