mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
16 lines
370 B
C++
16 lines
370 B
C++
#ifndef WRITER_H
|
|
#define WRITER_H
|
|
|
|
class Fluxmap;
|
|
|
|
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);
|
|
|
|
|
|
#endif
|