mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
15 lines
246 B
C++
15 lines
246 B
C++
#ifndef IMAGE_H
|
|
#define IMAGE_H
|
|
|
|
class SectorSet;
|
|
class ImageSpec;
|
|
|
|
extern SectorSet readSectorsFromFile(
|
|
const ImageSpec& filename);
|
|
|
|
extern void writeSectorsToFile(
|
|
const SectorSet& sectors,
|
|
const ImageSpec& filename);
|
|
|
|
#endif
|