mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
13 lines
358 B
C++
13 lines
358 B
C++
#ifndef IMGINPUTOUTPUTUTILS_H
|
|
#define IMGINPUTOUTPUTUTILS_H
|
|
|
|
extern std::vector<std::pair<int, int>> getTrackOrdering(const ImgInputOutputProto& config,
|
|
unsigned numTracks = 0, unsigned numSides = 0);
|
|
|
|
extern void getTrackFormat(const ImgInputOutputProto& config,
|
|
ImgInputOutputProto::TrackdataProto& trackdata, unsigned track, unsigned side);
|
|
|
|
#endif
|
|
|
|
|