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